隐藏维基百科标题

隐藏维基百科的标题栏

目前为 2024-11-28 提交的版本。查看 最新版本

// ==UserScript==
// @name         Hide Wikipedia Title
// @name:zh-CN   隐藏维基百科标题
// @namespace    http://tampermonkey.net/
// @version      2024-11-28
// @description  Hide Wikipedia title bar
// @description:zh-CN  隐藏维基百科的标题栏
// @author       Myth
// @match        https://*.wikipedia.org/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=wikipedia.org
// @grant        none
// @license      MIT
// ==/UserScript==
(function() {
    'use strict';
    document.getElementsByClassName('vector-sticky-header-context-bar-primary')[0].style.display = 'none'
})();