vue2文档大额头页面优化

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

  1. // ==UserScript==
  2. // @name vue2文档大额头页面优化
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description vue2文档大额头页面优化,去掉vue2警告提示
  6. // @author 小明
  7. // @match https://v2.cn.vuejs.org/v2/*
  8. // @icon https://v2.cn.vuejs.org/images/logo.svg
  9. // @grant GM_addStyle
  10. // @license MIT
  11. // ==/UserScript==
  12.  
  13. (function() {
  14. 'use strict';
  15. document.getElementById('v3-banner').remove();
  16. document.body.classList = [];
  17. if(document.getElementsByClassName('v3-warning').length !=0){
  18. document.getElementsByClassName('v3-warning')[0].remove();
  19. }
  20. })();

QingJ © 2025

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