净化剪切板

保留原结构的情况下去除 掘金、知乎的版权限制

目前為 2021-03-24 提交的版本,檢視 最新版本

// ==UserScript==
// @name         净化剪切板
// @namespace    
// @version      0.2
// @description  保留原结构的情况下去除 掘金、知乎的版权限制
// @author       renmu
// @match        *://*.juejin.cn/*
// @match        *://*.zhihu.com/*
// @grant        none
// ==/UserScript==

function getSelectionHtml() {
    var html = "";
    if (typeof window.getSelection != "undefined") {
        var sel = window.getSelection();
        if (sel.rangeCount) {
            var container = document.createElement("div");
            for (var i = 0, len = sel.rangeCount; i < len; ++i) {
                container.appendChild(sel.getRangeAt(i).cloneContents());
            }
            html = container.innerHTML;
        }
    } else if (typeof document.selection != "undefined") {
        if (document.selection.type == "Text") {
            html = document.selection.createRange().htmlText;
        }
    }
    return html;
}

function addLink(e) {
    e.preventDefault();
    var copytext = getSelectionHtml();
    console.log(copytext)
    var clipboardData = event.clipboardData || window.clipboardData;
    console.log(clipboardData)

    clipboardData.setData("text/html", copytext);
    clipboardData.setData("text", window.getSelection());
}

document.addEventListener("copy", addLink);

QingJ © 2025

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