隐藏 GitHub 账单警告

对于 GitHub 欠费账户,隐藏始终显示在头部的账单警告。

// ==UserScript==
// @name         隐藏 GitHub 账单警告
// @namespace    dongdong
// @version      0.1
// @description  对于 GitHub 欠费账户,隐藏始终显示在头部的账单警告。
// @author       dongdong
// @match        https://*github.com/*
// @icon         https://github.githubassets.com/favicons/favicon.svg
// @license      MIT
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    var style = document.createElement('style');
    style.innerHTML = '.flash-full { display: none; }';
    document.head.appendChild(style);
})();