DuckDuckNoJS

Forces DuckDuckGo to automatically redirect to non-JavaScript HTML search results, for those that disable JavaScript.

当前为 2015-09-29 提交的版本,查看 最新版本

  1. // ==UserScript==
  2. // @name DuckDuckNoJS
  3. // @namespace https://gf.qytechs.cn
  4. // @description Forces DuckDuckGo to automatically redirect to non-JavaScript HTML search results, for those that disable JavaScript.
  5. // @include https://duckduckgo.com/?*
  6. // @exclude https://duckduckgo.com/html*
  7. // @version 1
  8. // @grant none
  9. // ==/UserScript==
  10. window.stop();
  11. var query = location.search;
  12. query = query.split('q=');
  13. window.location = "https://duckduckgo.com/html/?q="+query[query.length-1];

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址