old google Favicon

old google.

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name         old google Favicon
// @namespace    https://churro.net
// @version      0.1
// @description  old google.
// @author       Churro
// @match        https://www.google.com/*
// @run-at       document-start
// @license      MIT
// ==/UserScript==

(function() {
    'use strict';
    //Change @match and add another site to change that sites favicon example:
    // @match        https://stackoverflow.com

    const favicon = document.querySelector("link[rel='shortcut icon']");
    [favicon, ...document.querySelectorAll("link[rel='icon']")].forEach(favicon => {
        favicon.remove();
    })
    console.log("Favicon Removed");

    const clone = favicon.cloneNode();
    //Change link to whatever image you want to change the favicon to that image.
    clone.href = "https://www.favicon.cc/?action=icon&file_id=837778";
    document.head.appendChild(clone);
})();