FuckMCBBS

去你妈的MCBBS | 取消右键屏蔽。| 取消复制屏蔽。| 取消选择屏蔽。| 删除闪图广告。

  1. // ==UserScript==
  2. // @name FuckMCBBS
  3. // @namespace https://github.com/xlch88/FuckMCBBS
  4. // @version 1.0
  5. // @description 去你妈的MCBBS | 取消右键屏蔽。| 取消复制屏蔽。| 取消选择屏蔽。| 删除闪图广告。
  6. // @author Xlch88
  7. // @match https://www.mcbbs.net/*
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. (function() {
  12. 'use strict';
  13. var a = document.createElement('style');
  14. a.innerHTML = 'html,body,*{user-select: initial;}';
  15. document.body.appendChild(a);
  16. document.oncontextmenu=function(){return true;};
  17. document.onselectstart=function(){return true;};
  18. jq('.hdc>div').html('<span style="color:white;font-size:22px;">FuckMCBBS V1.0 Enabled.</span>');
  19. })();