Last active
September 27, 2025 16:00
-
-
Save Niakr1s/8315680edd4d767ca9a2eb3929a3acfc to your computer and use it in GitHub Desktop.
TAMPERMONKEY jav.guru ST stream auto clicker
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==UserScript== | |
| // @name jav.guru ST stream auto clicker | |
| // @namespace http://tampermonkey.net/ | |
| // @version 2025-09-27 | |
| // @description try to take over the world! | |
| // @author You | |
| // @match https://jav.guru/*/* | |
| // @icon https://www.google.com/s2/favicons?sz=64&domain=mozilla.org | |
| // @grant none | |
| // ==/UserScript== | |
| (function() { | |
| 'use strict'; | |
| try { | |
| let titl = document.querySelector(".titl"); | |
| titl.title = titl.textContent; | |
| titl.textContent = titl.textContent.substring(0, 60); | |
| } catch {}; | |
| try {start_player();} catch {}; | |
| try { | |
| let buttons = document.querySelector("#section-li"); | |
| let st; | |
| for (let child of buttons.children){ | |
| if (child.textContent === "STREAM ST") { | |
| st = child; | |
| } | |
| } | |
| if (!st) return; | |
| st.children[0].click(); | |
| } | |
| catch {} | |
| })(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment