Greasy Fork is available in English.

Enable playing with dartconnect-app

Enable playing with dartconnect-app without premium-acc

  1. // ==UserScript==
  2. // @name Enable playing with dartconnect-app
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description Enable playing with dartconnect-app without premium-acc
  6. // @author benebelter
  7. // @match https://app.dartconnect.com/*
  8. // @icon
  9. // @require http://code.jquery.com/jquery-3.4.1.min.js
  10. // @license MIT
  11. // ==/UserScript==
  12.  
  13. (function() {
  14. 'use strict';
  15. if( $( "#drm-quick-play" ).length != 0 ) {
  16. setInterval(function() {
  17.  
  18. $( "#drm-quick-play" ).removeClass( "button-disabled" );
  19.  
  20. }, 1000);
  21. }
  22. })();