Greasy Fork is available in English.

Twitter Bird Favicon Restored

Changes the stupid new X favicon back to the cute Twitter bird we all know and love! <3

Installer dette scriptet?
Skaperens foreslåtte skript

Du vil kanskje også like Control Panel for Twitter.

Installer dette scriptet
// ==UserScript==
// @name         Twitter Bird Favicon Restored
// @namespace    https://codymkw.github.io/
// @version      1.0
// @description  Changes the stupid new X favicon back to the cute Twitter bird we all know and love! <3
// @author       CodyMKW
// @match        https://twitter.com/*
// @license MIT
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    var link = document.querySelector("link[rel='shortcut icon']");
    link.href = 'https://abs.twimg.com/favicons/twitter.2.ico';
})();