【资源】浏览器相关资源,广告、剪切板等
●1、去搜索引擎广告脚本:(点击安装)
●2、剪切板防写入:
// ==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-02 16:25:47 通过 手机 浏览(225)
共有0条评论!