去除一兜糖限制

允许复制文章

// ==UserScript==
// @name         去除一兜糖限制
// @description  允许复制文章
// @namespace    http://tampermonkey.net/
// @version      0.1
// @author       li02
// @include      *://*.yidoutang.com/*
// @icon         https://www.google.com/s2/favicons?domain=yidoutang.com
// @license      GPL-3.0 License
// @grant        none
// ==/UserScript==

(function() {
    let a = document.getElementById("guide-detail");
    let b = document.createElement("div");
    b.className="guide-detail";
    b.innerHTML=a.innerHTML;
    let parent = a.parentElement;
    parent.removeChild(a);
    let c = document.querySelector(".guide-gift")
    parent.insertBefore(b, c);
    //c.appendChild(b)
})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址