// ==UserScript== // @name 免费chrome商店代理 // @namespace https://bbs.tampermonkey.net.cn/ // @version 0.1.0 // @description 可以连接chrome商店,请使用ScriptCat执行本脚本 // @author wyz // @grant CAT_setProxy // @background // @debug // ==/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"] }]); // CAT_clearProxy(); });