CryptoWatch Hide Logo

Hide the logo on CryptoWatch site for bigger view

// ==UserScript==
// @name         CryptoWatch Hide Logo
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  Hide the logo on CryptoWatch site for bigger view
// @author       Nobakab
// @match        https://cryptowatch.net/?chart*
// @grant        none
// ==/UserScript==


(function() {
    'use strict';

    function addGlobalStyle(css) {
        var head, style;
        head = document.getElementsByTagName('head')[0];
        if (!head) { return; }
        style = document.createElement('style');
        style.type = 'text/css';
        style.innerHTML = css;
        head.appendChild(style);
    }
    function addExternalScript(js) {
        var head, script;
        head = document.getElementsByTagName('head')[0];
        if (!head) { return; }
        script = document.createElement('script');
        script.type = 'text/javascript';
        script.innerHTML = js;
        head.appendChild(script);
    }

    addGlobalStyle('div#logo {display: none}');
})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址