YouTube logo replacement with PornHub

A script to replace the YouTube logo with PornHub logo!

// ==UserScript==
// @name         YouTube logo replacement with PornHub
// @namespace    http://tampermonkey.net/
// @version      6.9
// @description  A script to replace the YouTube logo with PornHub logo!
// @author       saiko
// @match        https://www.youtube.com/
// @icon         https://www.google.com/s2/favicons?sz=64&domain=youtube.com
// @grant        none
 // @license     MIT
// ==/UserScript==
(function() {
    'use strict';
    document.getElementById('logo-icon').innerHTML = '<img src="https://di.phncdn.com/www-static/images/pornhub_logo_straight.png" height="25px" />';
})();