Advertisement
Guest User

Untitled

a guest
Sep 4th, 2015
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. // ==UserScript==
  2. // @name Fix
  3. // @namespace https://kondax.design
  4. // @version 0.1
  5. // @description Remove JS Function
  6. // @author http://www.hackforums.net/member.php?action=profile&uid=2377407
  7. // @match http://mafiaspillet.no/*
  8. // @grant none
  9. // @run-at document-start.
  10. // ==/UserScript==
  11.  
  12. function init () {
  13. console.log('REMOVED FUNC');
  14. }
  15.  
  16. checkForBadJavascripts ( [
  17. [false, /document.onkeypress\s+=\s+function/, function () {addJS_Node (init);} ],
  18. [false, /checkHotell/, function () {addJS_Node (init);} ]
  19. ] );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement