Greasy Fork

Greasy Fork is available in English.

神器/LOGO隐藏/LOGO移除

科学摸鱼必备!上班的时候不想让老板看到网站LOGO,怎么办就是它了~

当前为 2022-01-20 提交的版本,查看 最新版本

// ==UserScript==
// @name         神器/LOGO隐藏/LOGO移除
// @namespace
// @version      0.5
// @description  科学摸鱼必备!上班的时候不想让老板看到网站LOGO,怎么办就是它了~
// @author       FlyArtist
// @match        *
// @icon
// @grant        none
// @include      *
// @license MIT
// @namespace 
// ==/UserScript==

(function() {
    'use strict';

    function clearLogo() {
        var docs = document.querySelectorAll('.logo,.navbar_logo,[aria-label="知乎"],[aria-label="Weibo"],[aria-label="微博"],[title="到贴吧首页"]');
        for (var i = 0; i < docs.length; i++) {
            docs[i].setAttribute('style', 'display:none')
        }
    }

    clearLogo();
    setInterval(clearLogo, 300)
})();