Golang website without banner

Remove the banner of the golang website.

当前为 2020-09-07 提交的版本,查看 最新版本

// ==UserScript==
// @name         Golang website without banner
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  Remove the banner of the golang website.
// @author       Unknown
// @match        *://*.golang.org/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    var elements = document.getElementsByClassName("Header-banner");
    while(elements.length > 0){
        elements[0].parentNode.removeChild(elements[0]);
    };
})();

QingJ © 2025

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