Greasy Fork 支持简体中文。

iCorn

Change any page icon!

  1. // ==UserScript==
  2. // @name iCorn
  3. // @namespace http://tampermonkey.net/
  4. // @version 1.0
  5. // @description Change any page icon!
  6. // @author MultiverseG
  7. // @match https://www.youtube.com/*
  8. // @icon https://cdn2.iconfinder.com/data/icons/food-icons-6/200/food_corn-512.png
  9. // @license MIT
  10. // @grant none
  11. // ==/UserScript==
  12.  
  13. function gcloak() {
  14. var link = document.querySelector("link[rel*='icon']");
  15. document.createElement('link');
  16. link.type = 'image/x-icon';link.rel = 'shortcut icon';
  17. link.href = 'https://cdn2.iconfinder.com/data/icons/food-icons-6/200/food_corn-512.png'; //Use your own image here as the page's favicon
  18. document.title = 'iCorn'; //Enter the page title you want here.
  19. console.log(document.title);
  20. document.getElementsByTagName('head')[0].appendChild(link) };gcloak();setInterval(gcloak, 1000);