hide-wiki-permission-tip

try to take over the world!

目前為 2017-07-04 提交的版本,檢視 最新版本

// ==UserScript==
// @name         hide-wiki-permission-tip
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  try to take over the world!
// @author       You
// @match        *://wiki.sankuai.com/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    const styleel = document.createElement('style');
    styleel.setAttribute('type', 'text/css');
    styleel.textContent = `
#header-precursor {
  display: none;
}
`;
    document.head.appendChild(styleel);

    document.addEventListener('DOMContentLoaded', () => {
        const el = document.getElementById('header-precursor');
        if (el) {
            el.parentNode.removeChild(el);
        }
    });
})();

QingJ © 2025

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