您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
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
当前为
// ==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);