让Chrome通过TOR来登录品葱
我更喜欢用Chrome,但TOR默认是用Firefox
现在给个教程
第一步,启动TOR
第二部,打开CMD,输入
C:\Program Files (x86)\Google\Chrome\Application\chrome.exe" --show-app-list --proxy-server="SOCKS5://127.0.0.1:9150
这样就可以用chrome通过tor来登录品葱了
----------------
另外给墙内同胞一个脚本,用来解决Google被墙,很多web打开慢的问题
ps:如果看懂这个脚本,也就知道如何用这个脚本屏蔽水印了吧。。。
这个水印太恶心了。。。
现在给个教程
第一步,启动TOR
第二部,打开CMD,输入
C:\Program Files (x86)\Google\Chrome\Application\chrome.exe" --show-app-list --proxy-server="SOCKS5://127.0.0.1:9150
这样就可以用chrome通过tor来登录品葱了
----------------
另外给墙内同胞一个脚本,用来解决Google被墙,很多web打开慢的问题
chrome.webRequest.onBeforeRequest.addListener(
function(request) {
var url = request.url.replace('googleapis.com', 'proxy.ustclug.org');
url = url.replace('themes.googleusercontent.com', 'google-themes.lug.ustc.edu. cn');
url = url.replace('www.google.com/recaptcha/','www.recaptcha.net/recaptcha/');
return {redirectUrl: url};
},
{
urls: [
"*://ajax.googleapis.com/*",
"*://themes.googleusercontent.com/*",
"*://www.google.com/recaptcha/*"
]
},
["blocking"]
);
ps:如果看懂这个脚本,也就知道如何用这个脚本屏蔽水印了吧。。。
这个水印太恶心了。。。