【资源】浏览器相关资源,广告、剪切板等

1、去搜索引擎广告脚本:(点击安装)

https://update.greasyfork.org/scripts/437351/%E6%90%9C%E7%B4%A2%E5%BC%95%E6%93%8E%E5%8E%BB%E5%B9%BF%E5%91%8A.user.js

 

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条评论!

发表评论