Testportal cheat

a simple Testportal hack

  1. // ==UserScript==
  2. // @name Testportal cheat
  3. // @version 0.1
  4. // @description a simple Testportal hack
  5. // @include *testportal.pl/exam/*
  6. // @grant none
  7. // @namespace https://greasyfork.org/users/700932
  8. // ==/UserScript==
  9.  
  10. (function() {
  11. 'use strict';
  12.  
  13. if (window.blurSpy != null) {
  14. window.blurSpy.stop();
  15. }
  16. document.hasFocus = () => true;
  17. })();