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

스크립트 설치?
개발자의 추천 스크립트

Control Panel for Twitter는 어떤가요?

스크립트 설치
질문, 리뷰하거나, 이 스크립트를 신고하세요.
// ==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';
})();