Greasy Fork is available in English.

vue2文档大额头页面优化

vue2文档大额头页面优化,去掉vue2警告提示

// ==UserScript==
// @name    vue2文档大额头页面优化
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  vue2文档大额头页面优化,去掉vue2警告提示
// @author       小明
// @match        https://v2.cn.vuejs.org/v2/*
// @icon         https://v2.cn.vuejs.org/images/logo.svg
// @grant        GM_addStyle
// @license      MIT
// ==/UserScript==

(function() {
    'use strict';
    document.getElementById('v3-banner').remove();
    document.body.classList = [];
    if(document.getElementsByClassName('v3-warning').length !=0){
	document.getElementsByClassName('v3-warning')[0].remove();
    }
	
})();