Skip to content

Instantly share code, notes, and snippets.

@Niakr1s
Last active September 27, 2025 16:00
Show Gist options
  • Select an option

  • Save Niakr1s/8315680edd4d767ca9a2eb3929a3acfc to your computer and use it in GitHub Desktop.

Select an option

Save Niakr1s/8315680edd4d767ca9a2eb3929a3acfc to your computer and use it in GitHub Desktop.
TAMPERMONKEY jav.guru ST stream auto clicker
// ==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