Chrome有没有可以查看当前网站是否使用了代理的插件?

2013-10-09 16:22:16 +08:00
 danzwl
4720 次点击
所在节点    问与答
3 条回复
kingwrcy
2013-10-09 17:21:01 +08:00
你用的什么代理插件?如果是用的Proxy SwitchSharp,当前网站如果使用了代理,右上角那个图标是有颜色的,反之则是灰色的.
danzwl
2013-10-09 17:51:56 +08:00
@kingwrcy 现在用的是系统Pac代理设置 不用Proxy SwitchSharp是因为它和Chrome经常性格不合
1423
2013-10-09 20:12:19 +08:00
PAC加alert,可复制以下
function gen_dbg_info(){
debugPAC = "IP: " + myIpAddress();
debugPAC += ", Hostname: " + host;
if (isResolvable(host)) {resolvableHost = "True"} else {resolvableHost = "False"};
debugPAC += ", Host Resolvable: " + resolvableHost;
debugPAC += ", Hostname IP: " + dnsResolve(host);
if (isPlainHostName(host)) {plainHost = "True"} else {plainHost = "False"};
debugPAC += ", Plain Hostname: " + plainHost;
debugPAC += ", Domain Levels: " + dnsDomainLevels(host);
debugPAC += ", URL: " + url;
// Protocol can only be determined by reading the entire URL.
if (url.substring(0,5)=="http:") {protocol="HTTP";} else
if (url.substring(0,6)=="https:") {protocol="HTTPS";} else
if (url.substring(0,4)=="ftp:") {protocol="FTP";}
else {protocol="Unknown";}
debugPAC +=", Protocol: " + protocol;
}

function end(_result){
if (debug === 1){
debugPAC = _result + ", " + debugPAC;
alert(debugPAC);
}
return _result;
}



if (debug === 1) gen_dbg_info();

在chrome://net-internals/#events
中搜索,筛选,查看

这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。

https://www.v2ex.com/t/84993

V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。

V2EX is a community of developers, designers and creative people.

© 2021 V2EX