Greasemonkey script to prevent radioloyalty from hiding captcha


SUBMITTED BY: KapguHaJI

DATE: May 29, 2017, 5:28 a.m.

UPDATED: June 25, 2017, 1:56 p.m.

FORMAT: JavaScript

SIZE: 395 Bytes

HITS: 82369

  1. // ==UserScript==
  2. // @name Radio prevent hide
  3. // @namespace radio-prevent
  4. // @include http://player.radioloyalty.com/*
  5. // @include https://player.radioloyalty.com/*
  6. // @version 1
  7. // @grant none
  8. // ==/UserScript==
  9. (function() {
  10. function prevent() {
  11. setInterval(function(){
  12. displayCaptcha();
  13. }, 100);
  14. }
  15. window.onload = prevent;
  16. })();

comments powered by Disqus