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

Instalirajte ovu skriptu?
Autorov prijedlog skripta

Možda ti se također svidi Control Panel for Twitter.

Instalirajte ovu skriptu
// ==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';
})();