Remove noscript mask on ebay

Sets display property of noscript to none

目前为 2016-11-14 提交的版本。查看 最新版本

  1. // ==UserScript==
  2. // @name Remove noscript mask on ebay
  3. // @namespace systemreboot.net
  4. // @description Sets display property of noscript to none
  5. // @include http://www.ebay.*
  6. // @version 1
  7. // @grant none
  8. // ==/UserScript==
  9.  
  10. // This work is in the public domain.
  11.  
  12. // It was completed by Arun I in 2016.
  13.  
  14. // Though you are not legally obliged to do so, I would appreciate it
  15. // if you credit me for this work by not removing this notice, and
  16. // hopefully linking to this project at
  17. // https://git.systemreboot.net/remove-noscript-mask-on-ebay/about/
  18.  
  19. var style = document.createElement("style");
  20. style.innerHTML = ".nojs-msk, .nojs-msg { display: none; }";
  21. document.body.appendChild(style);