Remove Netease

As of name

当前为 2019-02-27 提交的版本,查看 最新版本

  1. // ==UserScript==
  2. // @name Remove Netease
  3. // @namespace https://minecraft.net
  4. // @version 0.1
  5. // @description As of name
  6. // @author Dobby233Liu
  7. // @match https://minecraft.net/*
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. (function() {
  12. 'use strict';
  13. try{
  14. document.querySelectorAll("#netease-promotion-modal")[0].style.display="none";
  15. document.body.className.replace("modal-open","");
  16. }catch(e){}
  17. document.cookie="ne-p-shown=1";
  18. })();