B站复制防侵入

bilibili cheers!

// ==UserScript==
// @name         B站复制防侵入
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  bilibili cheers!
// @author       jbts6
// @match        https://www.bilibili.com/read/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=bilibili.com
// @grant        none
// @license MIT
// ==/UserScript==

(function() {
    'use strict';
console.log('复制防侵入', navigator.clipboard ? '已启动' : '无效,不支持navigator.clipboard');
    var copyListen = function(e) {
        var text = window.getSelection().toString();
        navigator.clipboard && navigator.clipboard.writeText(text);
    };
    if (document.getElementById('article-content')){
        document.getElementById('article-content').addEventListener('copy', copyListen)
    }
    document.addEventListener('copy', copyListen);
    // Your code here...
})();

QingJ © 2025

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