Golang website without banner

Remove the banner of the golang website.

Versión del día 07/09/2020. Echa un vistazo a la versión más reciente.

// ==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]);
    };
})();
长期地址
遇到问题?请前往 GitHub 提 Issues。