DuckDuckNoJS

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

  1. // ==UserScript==
  2. // @name DuckDuckNoJS
  3. // @namespace https://greasyfork.org
  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];