Script to change steam favicon to the old icon what I base this off of https://greasyfork.org/en/scripts/481559-use-old-reddit-favicon
当前为
// ==UserScript==
// @name ??-?? steam favicon
// @version 2.3
// @description Script to change steam favicon to the old icon what I base this off of https://greasyfork.org/en/scripts/481559-use-old-reddit-favicon
// @author ...
// @match https://store.steampowered.com/*
// @namespace https://store.steampowered.com/
// ==/UserScript==
let newfav = `https://cdn-icons-png.flaticon.com/512/220/220223.png`;
// "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);