您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Hide specific sites from DuckDuckGo search results
There are many reasons why one might not wish to see results from specific domains:
Whatever your specific reasons, you can hide them from DuckDuckGo results with this little script. It doesn't feature a fancy GUI (patches welcome, or you fork it and add them yourself), so for now you'll have to edit the script to manage sites-to-hide. There are two variables for that at the very beginning of the script: unwanted
are exact host names, so e.g. experts-exchange.com
only matches experts-exchange.com
(as e.g. in http://experts-exchange.com/*
), while unwantedWild
holds regular expressions – with e.g. .*\\.jquery.com
matching all sub-domains of jquery.com
(www.jquery.com
, forum.jquery.com
etc).
The following example is definitely not real-life, but should demonstrate the usage:
var unwanted = ['experts-exchange.com','api.jquery.com','datatables.net']; var unwantedWild = ['.*\\.jquery.com'];