Upload script itself.
This commit is contained in:
parent
174e3b1dcb
commit
f2cb865ae5
22
Auto-claimer for VK Play Live.user.js
Normal file
22
Auto-claimer for VK Play Live.user.js
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
// ==UserScript==
|
||||||
|
// @name Auto-claimer for VK Play Live
|
||||||
|
// @namespace arav.su
|
||||||
|
// @match *://vkplay.live/*
|
||||||
|
// @grant none
|
||||||
|
// @version 0.1
|
||||||
|
// @author Alexander "Arav" Andreev <me@arav.su>
|
||||||
|
// @homepageURL https://git.arav.su/Arav/auto-claimer-vkpl
|
||||||
|
// @downloadURL https://git.arav.su/Arav/auto-claimer-vkpl/src/branch/master/Auto-claimer%20for%20VK%20Play%20Live.user.js
|
||||||
|
// @description A script to claim +50 bonuses on VK Play Live
|
||||||
|
// ==/UserScript==
|
||||||
|
|
||||||
|
const defaultOptions = {subtree: true, childList: true};
|
||||||
|
|
||||||
|
(new MutationObserver(() => {
|
||||||
|
const b = document.querySelector("button[class^=PointActions_buttonBonus]");
|
||||||
|
if(b != null) {
|
||||||
|
b.click();
|
||||||
|
console.log("Claimed!");
|
||||||
|
}
|
||||||
|
})).observe(document.querySelector("div[class^=StreamChatFooter_root]"), defaultOptions);
|
||||||
|
|
Loading…
Reference in New Issue
Block a user