脚本已归档
该脚本已经被作者归档,脚本可能失效并且作者不再维护,你无法再进行问题反馈。
// ==UserScript==
// @name 免费chrome商店代理
// @namespace https://bbs.tampermonkey.net.cn/
// @version 0.1.2
// @description 可以连接chrome商店,请使用ScriptCat执行本脚本
// @author wyz
// @grant CAT_setProxy
// @background
// @supportURL https://bbs.tampermonkey.net.cn/forum.php?mod=viewthread&tid=417
// @homepage https://bbs.tampermonkey.net.cn/forum.php?mod=viewthread&tid=417
// ==/UserScript==
return new Promise((resolve, reject) => {
// Your code here...
CAT_setProxy([{
proxyServer: {
scheme: 'https',
host: 'px.xloli.top',
port: 23914,
},
matchUrl: ["chrome.google.com", "play.google.com", "*.googleusercontent.com", "*.ip138.com","clients2.google.com","scholar.google.com","scholar.googleusercontent.com"]
}]);
// CAT_clearProxy();
});