| 12345678910111213141516171819202122232425 |
- // ==UserScript==
- // @name Auto-continue to image
- // @namespace http://tampermonkey.net/
- // @version 2025-06-10
- // @description Automatically click the "continue to image" button on certain sites.
- // @author You
- // @match https://imx.to/i/*
- // @icon https://www.google.com/s2/favicons?sz=64&domain=imx.to
- // @grant none
- // ==/UserScript==
- (function() {
- 'use strict';
- document.setTimeout(() => {
- let btn = document.getElementById('continuebutton');
- if (!btn) {
- btn = document.getElementsByName('imgContinue')[0];
- }
- if (btn) {
- btn.click();
- }
- }, 200);
- })();
|