WK no idle

Deletes the timeout element (If it causes problems I don't know about them)

  1. // ==UserScript==
  2. // @name WK no idle
  3. // @namespace http://your.homepage/
  4. // @version 0.1
  5. // @description Deletes the timeout element (If it causes problems I don't know about them)
  6. // @author Ethan
  7. // @match http*://www.wanikani.com/review/session
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. var timeoutDiv = document.getElementById("timeout");
  12.  
  13. timeoutDiv.parentNode.removeChild(timeoutDiv);