Imagestwist Bypass

auto click "Continue to image..." button.

  1. // ==UserScript==
  2. // @name Imagestwist Bypass
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description auto click "Continue to image..." button.
  6. // @author You
  7. // @match http://imagestwist.com/*
  8. // @icon data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
  9. // @grant none
  10. // @license MIT
  11. // ==/UserScript==
  12.  
  13. (function() {
  14. 'use strict';
  15. document.querySelector("[type=submit]").click();
  16. })();