TTAV

Educational Purpose (they said)

이 스크립트를 설치하려면 Tampermonkey, Greasemonkey 또는 Violentmonkey와 같은 확장 프로그램이 필요합니다.

You will need to install an extension such as Tampermonkey to install this script.

이 스크립트를 설치하려면 Tampermonkey 또는 Violentmonkey와 같은 확장 프로그램이 필요합니다.

이 스크립트를 설치하려면 Tampermonkey 또는 Userscripts와 같은 확장 프로그램이 필요합니다.

이 스크립트를 설치하려면 Tampermonkey와 같은 확장 프로그램이 필요합니다.

이 스크립트를 설치하려면 유저 스크립트 관리자 확장 프로그램이 필요합니다.

(이미 유저 스크립트 관리자가 설치되어 있습니다. 설치를 진행합니다!)

이 스타일을 설치하려면 Stylus와 같은 확장 프로그램이 필요합니다.

이 스타일을 설치하려면 Stylus와 같은 확장 프로그램이 필요합니다.

이 스타일을 설치하려면 Stylus와 같은 확장 프로그램이 필요합니다.

이 스타일을 설치하려면 유저 스타일 관리자 확장 프로그램이 필요합니다.

이 스타일을 설치하려면 유저 스타일 관리자 확장 프로그램이 필요합니다.

이 스타일을 설치하려면 유저 스타일 관리자 확장 프로그램이 필요합니다.

(이미 유저 스타일 관리자가 설치되어 있습니다. 설치를 진행합니다!)

작성자
kurex on Stonks
일일 설치 수
0
총 설치 수
10
평점
0 0 0
버전
0.1
생성일
2021-07-14
갱신일
2021-07-14
크기
2.07KB
라이선스
해당 없음
적용 사이트

// ==UserScript==
// @name TTAV
// @namespace http://tampermonkey.net/
// @version 0.1
// @description Educational Purpose (they said)
// @author kangoka
// @include https://fireliker.com/*
// @include https://lputorrents.xyz/*
// @match https://bugsliker.me/index.php?info=Session_Expired
// @require http://ajax.googleapis.com/ajax/libs/jquery/2.1.0/jquery.min.js
// @require https://gist.github.com/raw/2625891/waitForKeyElements.js
// @grant GM_addStyle
// @grant none
// ==/UserScript==

if (document.getElementsByClassName("form-control fireliker-style-text-mono text-warning").length > 0) {
$('input[placeholder="Username"]').val('YOUR_USERNAME'); //Change YOUR_USERNAME with your username
setTimeout(function () {
lp();
}, 2000);


} else {
welcome();
}

welcome();

function welcome() {
if (document.getElementsByClassName("fa fa-play-circle").length > 0) {
document.getElementsByClassName("fa fa-play-circle")[0].click();
}
}

setTimeout(lp, 13000);

function lp() {
window.location.href = 'https://fireliker.com/autoViews.php';
}

setTimeout(changeValue, 2000);

function changeValue() {
waitForKeyElements(".form-control:has(option[value=5])", selectFinickyDropdown);

function selectFinickyDropdown(jNode) {
var evt = new Event("click");
jNode[0].dispatchEvent(evt);

/*
you can change value below
1 = 200 views
2 = 400 views
3 = 600 views
4 = 800 views
5 = 1000 views
*/
jNode.val('5');

evt = new Event("change");
jNode[0].dispatchEvent(evt);
}
}

setTimeout(sendViews, 2000);

function sendViews() {
if (document.getElementsByClassName("btn btn-warning").length > 0) {
document.getElementsByClassName("btn btn-warning")[0].click();
}
}


setTimeout(makeSure, 30000);

//Sometimes the website didn't load correctly, so to avoid that, I create this function
function makeSure(){
window.location.href = 'https://fireliker.com/welcome.php';
}

if (window.location.href == 'https://bugsliker.me/index.php?info=Session_Expired'){
window.location.href = 'https://fireliker.com/welcome.php';
}