Greasy Fork 支持简体中文。

DuckDuckGo Always Terminal Theme

Enables Therminal Theme Forever.

  1. // ==UserScript==
  2. // @name DuckDuckGo Always Terminal Theme
  3. // @description Enables Therminal Theme Forever.
  4. // @author nullgemm
  5. // @version 0.2.1
  6. // @grant none
  7. // @match *://duckduckgo.com/*
  8. // @run-at document-start
  9. // @icon https://duckduckgo.com/favicon.ico
  10. // @namespace https://greasyfork.org/en/users/322108-nullgemm
  11. // ==/UserScript==
  12.  
  13. var date = new Date();
  14. date.setTime(date.getTime()+(100*24*60*60*1000));
  15. var expires = "; expires="+date.toGMTString();
  16. document.cookie = "ae=t"+expires+"; path=/";
  17. document.cookie = "m=m"+expires+"; path=/";