Timer bypass - straightforwarddriving.com

Bypass that stupid timer

  1. // ==UserScript==
  2. // @name Timer bypass - straightforwarddriving.com
  3. // @namespace Violentmonkey Scripts
  4. // @match https://www.straightforwarddriving.com/*
  5. // @require http://code.jquery.com/jquery-3.4.1.min.js
  6. // @grant none
  7. // @version 1.0
  8. // @author Bean
  9. // @description Bypass that stupid timer
  10. // @license MIT
  11. // ==/UserScript==
  12.  
  13. $(document).ready(function() {
  14.  
  15. document.getElementsByClassName('learndash_mark_complete_button')[0].removeAttribute("disabled")
  16.  
  17. });