玩你妈逼滚去学

防止任何使用浏览器的行为 滚去学

  1. // ==UserScript==
  2. // @name 玩你妈逼滚去学
  3. // @namespace 0w0右手
  4. // @include *
  5. // @version 0.00001
  6. // @description 防止任何使用浏览器的行为 滚去学
  7. // @grant GM_addStyle
  8. // ==/UserScript==
  9.  
  10. (function(){
  11.  
  12. //=================================公共函数===================================
  13. function $(id){
  14. if(typeof id != undefined){
  15. return document.getElementById(id);
  16. }
  17. }
  18. function loadStyle(css){
  19. if(typeof GM_addStyle!='undefined'){
  20. GM_addStyle(css);
  21. }
  22. else{
  23. var heads=document.getElementsByTagName('head');
  24. if(heads.length>0){
  25. var node=document.createElement('style');
  26. node.type='text/css';
  27. node.appendChild(document.createTextNode(css));
  28. heads[0].appendChild(node);
  29. }
  30. }
  31. }
  32.  
  33. //=================================CSS========================================
  34. var cssstyle = '\
  35. #PlayMask{\
  36. left:0px !important;\
  37. top:0px !important;\
  38. position:fixed !important;\
  39. z-index:9999999999 !important;\
  40. background:rgba(248,248,248,0.9) url("http://bbs.gamefy.cn/data/attachment/album/201506/28/1958487z1feo71j5ennven.png") no-repeat center top !important;\
  41. }';
  42. loadStyle(cssstyle);
  43.  
  44. //============================================================================
  45. var mask = document.createElement('div');
  46. mask.id = 'PlayMask';
  47. window.top.document.documentElement.appendChild(mask);
  48. mask.style.width = document.body.clientWidth + 'px';
  49. mask.style.height = document.body.clientHeight + 'px';
  50.  
  51. })();

QingJ © 2025

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