【教程】禁止浏览器网站复制
复制浏览器网站复制脚本:
// ==UserScript==
// @name 剪贴板守护
// @namespace https://viayoo.com/
// @version 0.1
// @description try to take over the world!
// @author You
// @run-at document-start
// @match https://*/*
// @grant none
// ==/UserScript==
//剪贴板守护
if(/y\.qq\.com|\.lanzou|\.bilibili\.|baijiahao\.baidu\.com|mbd\.baidu\.|tieba\.baidu\.com|zx\.sina|haokan\.|taobao\./.test(location.hostname) && typeof document.execCommand === 'function' && /\[native/.test(String(document.execCommand))) {
document.execCommand = function () {
return true;
};
document.title = '😉' + document.title;
}
教程 2024-02-04 01:45:08 通过 手机 浏览(228)
共有0条评论!