Remove scroll up

Remove the auto scroll up when clicking the CB or Music links

目前为 2017-10-16 提交的版本。查看 最新版本

  1. // ==UserScript==
  2. // @name Remove scroll up
  3. // @version 1
  4. // @description Remove the auto scroll up when clicking the CB or Music links
  5. // @author A Meaty Alt
  6. // @include /fairview.deadfrontier.com/
  7. // @grant none
  8. // @namespace https://greasyfork.org/users/150647
  9. // ==/UserScript==
  10.  
  11. (function() {
  12. 'use strict';
  13. var imgs = document.getElementsByTagName("img");
  14. for(var i=0; i<imgs.length; i++){
  15. if("Turn CB Radio On" == imgs[i].alt || "Turn Music On" == imgs[i].alt)
  16. imgs[i].setAttribute("onclick", imgs[i].getAttribute("onclick")+ ";return false;");
  17. }
  18. })();