Wanikani: Skip to Quiz

Enables the quiz button without having to go through any of the lessons.

当前为 2019-11-25 提交的版本,查看 最新版本

  1. // ==UserScript==
  2. // @name Wanikani: Skip to Quiz
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1.1
  5. // @description Enables the quiz button without having to go through any of the lessons.
  6. // @author Kumirei
  7. // @match https://www.wanikani.com/lesson/session
  8. // @include *preview.wanikani.com/lesson/session
  9. // @require https://greasyfork.org/scripts/5392-waitforkeyelements/code/WaitForKeyElements.js?version=115012
  10. // @grant none
  11. // ==/UserScript==
  12.  
  13. (function() {
  14. waitForKeyElements('li[data-index="quiz"]', function(e) {
  15. e.addClass('active-quiz');
  16. });
  17. })();