NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript==
// @name KTT2 CustomIcon
// @namespace https://ktt2.com/*
// @version 0.1
// @description try to take over the world!
// @author xamo
// @match https://www.ktt2.com/*
// @grant none
// @license UPL-1.0
// ==/UserScript==
(function () {
'use strict';
function setFavicons(favImg) {
let headTitle = document.querySelector('head');
let setFavicon = document.createElement('link');
setFavicon.setAttribute('rel', 'shortcut icon');
setFavicon.setAttribute('href', favImg);
headTitle.appendChild(setFavicon);
}
setFavicons('https://i.imgur.com/5kAJWOo.png');
})();