// ==UserScript== // @name DuckDuckGo: Default to past year // @namespace adamw.uk // @version 1.1 // @description Make DuckDuckGo (DDG) default to showing results from the past year. // @author Adam W // @match https://duckduckgo.com/* // @grant none // @downloadURL none // ==/UserScript== (function() { 'use strict'; var url = window.location.href; if (url.indexOf('&df=') == -1) { var newurl = url + '&df=y'; window.location.href = newurl; } })();