remove tgfc flag for abp

press shift+r to remove the flag

目前为 2017-04-12 提交的版本。查看 最新版本

  1. // ==UserScript==
  2. // @name remove tgfc flag for abp
  3. // @description press shift+r to remove the flag
  4. // @namespace https://greasyfork.org/users/115835
  5. // @require https://code.jquery.com/jquery-3.2.1.slim.min.js
  6. // @match *://*.tgfcer.com/*
  7. // @version 0.0.1.20170412073707
  8. // ==/UserScript==
  9.  
  10. (function(){
  11. document.addEventListener('keydown', function(e) {
  12. if (e.keyCode == 82 && e.shiftKey && !e.ctrlKey && !e.altKey && !e.metaKey) {
  13. $("i").remove();
  14. }
  15. }, false);
  16. })();