Last active
May 29, 2021 12:24
-
-
Save dreygur/6b5d46f04d12e29126f43919fea106a1 to your computer and use it in GitHub Desktop.
Point Collection Bot for YoulikeHits.com
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 YOULIKEHITS | |
| // @namespace https://dreygur.js.org | |
| // @author Rakibul Yeasin | |
| // @description Point Collection Bot for YoulikeHits.com | |
| // @version 1.0.1 | |
| // @date 2021-05-29 | |
| // @icon https://www.youlikehits.com/favicon.ico | |
| // @icon64 https://www.youlikehits.com/favicon.ico | |
| // @updateURL https://gist.github.com/dreygur/6b5d46f04d12e29126f43919fea106a1/raw/6ef4bfb535e3a15f31f078f4b20c75c126fa9562/youlikehits.user.js | |
| // @downloadURL https://gist.github.com/dreygur/6b5d46f04d12e29126f43919fea106a1/raw/6ef4bfb535e3a15f31f078f4b20c75c126fa9562/youlikehits.user.js | |
| // @run-at document-end | |
| // @grant *.youlikehits.com/youtubenew2.php | |
| // ==/UserScript== | |
| (() => { | |
| // Username: drumsticks | |
| setInterval(() => { | |
| console.log(location.href); | |
| var btn = document.querySelector('.followbutton'); | |
| if (btn) { | |
| btn.click(); | |
| newWin.parent.focus(); | |
| } else { | |
| var audio = new Audio('https://interactive-examples.mdn.mozilla.net/media/cc0-audio/t-rex-roar.mp3'); | |
| audio.play(); | |
| } | |
| }, 70000) | |
| })() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment