2015-2021 Discord favicon

Script to change Discord favicon to the old icon what I base this off of https://greasyfork.org/en/scripts/481559-use-old-reddit-favicon

目前为 2024-05-27 提交的版本。查看 最新版本

// ==UserScript==
// @name         2015-2021 Discord favicon
// @namespace    https://discord.com/
// @version      1.2
// @description  Script to change Discord favicon to the old icon what I base this off of https://greasyfork.org/en/scripts/481559-use-old-reddit-favicon
// @match        https://*.discord.com/*
// @icon         file:///home/chronos/u-e815b45882525b307010bcd0966e1fe7ba803a06/MyFiles/Downloads/discord-computer-servers-teamspeak-discord-icon.png
// ==/UserScript==
 
let newfav = `https://b.thumbs.redditmedia.com/QfXLRvmJNlqdZViZzCpiTVDltBvp8yANoVMBtiyfsGc.jpg`;
 
// "beyond this line" etc etc
 
window.addEventListener('load', () => {
var icon = [...document.querySelectorAll('link[rel~="icon"]')];
var copy = icon[0].cloneNode(true);
copy.href = newfav;
icon.map(x=>x.parentNode.removeChild(x));
document.head.appendChild(copy);
}, false);