DuckDuckGo - Alt Favicon

Changes DDG favicon to their logo without any orange in it

  1. // ==UserScript==
  2. // @name DuckDuckGo - Alt Favicon
  3. // @namespace codeberg.org/skye
  4. // @match http*://*.duckduckgo.com/*
  5. // @grant none
  6. // @version 1.0.0
  7. // @author freyja
  8. // @description Changes DDG favicon to their logo without any orange in it
  9. // @icon https://duckduckgo.com/assets/logo_header.alt.v108.svg
  10. // @license MIT
  11. // ==/UserScript==
  12.  
  13. var head = document.getElementsByTagName('head')[0];
  14. var icon = document.createElement('link');
  15.  
  16. icon.setAttribute('type', 'image/x-icon');
  17. icon.setAttribute('rel', 'icon'); //firefox
  18. icon.setAttribute('rel', 'shortcut icon'); //chromium
  19. icon.setAttribute('href', 'https://duckduckgo.com/assets/logo_header.alt.v108.svg');
  20.  
  21. head.appendChild(icon);

QingJ © 2025

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