vue ad remove

try to take over the world!

当前为 2019-07-18 提交的版本,查看 最新版本

  1. // ==UserScript==
  2. // @name vue ad remove
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description try to take over the world!
  6. // @author huozi
  7. // @include https://cn.vuejs.org/*
  8. // @match https://cn.vuejs.org/
  9. // @grant none
  10. // ==/UserScript==
  11.  
  12. (function() {
  13. 'use strict';
  14. var gg = document.getElementById('sidebar-sponsors-special');
  15. gg.parentNode.removeChild(gg);
  16. // Your code here...
  17. })();