opera 使用特定代理打开特定网页
一、在线代理
先建一个http://www.unblock365.com/index.php的搜索,
定义个快捷字 母,如“W”
之后如果你要上http://thepiratebay.org/,
就在地址栏输入w http://thepiratebay.org/后就可以自动使用网
页代理进这个网站了。
二、代理服务器
如果你要 用tor访问某些站点比如wikipedia和opera社区
在override.ini添加如下内容
[Overrides]
my.opera.com
wikipedia.org
[my.opera.com]
Proxy|Use HTTP=1
Proxy|HTTP server=127.0.0.1:8118
[wikipedia.org]
Proxy|Use HTTP=1
Proxy|HTTP server=127.0.0.1:8118
最后将 override,ini保存为utf-8格式
如果要对所有站点都使用代理,在opera窗口下按F12键,勾选enable proxy servers
用代理脚本实现同样功能
function FindProxyForURL(url,host)
{
if (dnsDomainIs(host, “.blogspot.com”) ||
dnsDomainIs(host, “wordpress.com”) ||
dnsDomainIs(host, “wordpress.org”) ||
dnsDomainIs(host, “photomatt.net”) ||
dnsDomainIs(host, “.wikipedia.org”) ||
dnsDomainIs(host, “technorati.com”) ||
dnsDomainIs(host, “sourceforge.net”) ||
dnsDomainIs(host, “free-codecs.com”) ||
dnsDomainIs(host, “.opera.com”) ||
dnsDomainIs(host, “news.google.com”) ||
dnsDomainIs(host, “images.google.com”) ||
dnsDomainIs(host, “.chinesenewsnet.com”) ||
dnsDomainIs(host, “rottentomatoes.com”) ||
dnsDomainIs(host, “flickr.com”) ||
shExpMatch(url, “http://*/search?q=cache*”))
return “PROXY 127.0.0.1:808”;
else
return “DIRECT”;
}