delCSLimit

del chuangshi.com limit

  1. // ==UserScript==
  2. // @name delCSLimit
  3. // @namespace perzer.com
  4. // @description del chuangshi.com limit
  5. // @include http://chuangshi.qq.com/read/bk/ds/*.html
  6. // @include http://chuangshi.qq.com/read/bk/js/*.html
  7. // @include http://chuangshi.qq.com/read/bk/ls/*.html
  8. // @version 1
  9. // ==/UserScript==
  10.  
  11. window.onload = function() {
  12. document.oncontextmenu=function(){return true;}//屏蔽右键菜单
  13. document.onpaste=function(){return true;}//屏蔽粘贴
  14. document.oncopy=function(){return true;}//屏蔽复制
  15. document.oncut=function(){return true;}//屏蔽剪切
  16. document.onselectstart=function(){return true;}//屏蔽选择
  17. };