xamo3k / KTT2 Custom Icon

// ==UserScript==
// @name         KTT2 Custom Icon
// @namespace    https://www.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');

})();