gplinks auto-skip

auto-click buttons for the gplinks link shortener

ของเมื่อวันที่ 20-03-2024 ดู เวอร์ชันล่าสุด

คุณจะต้องติดตั้งส่วนขยาย เช่น Tampermonkey, Greasemonkey หรือ Violentmonkey เพื่อติดตั้งสคริปต์นี้

คุณจะต้องติดตั้งส่วนขยาย เช่น Tampermonkey หรือ Violentmonkey เพื่อติดตั้งสคริปต์นี้

คุณจะต้องติดตั้งส่วนขยาย เช่น Tampermonkey หรือ Violentmonkey เพื่อติดตั้งสคริปต์นี้

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

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

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name        gplinks auto-skip
// @description auto-click buttons for the gplinks link shortener
// @version     1.0
// @include     *
// @run-at      document-start
// @namespace https://greasyfork.org/users/980489
// ==/UserScript==

(function() {
    'use strict';

    document.addEventListener('DOMContentLoaded', function() {

        // part 1
        // can't specify a domain, they add new ones daily
        let button1 = document.querySelector('#VerifyBtn');
        let button2 = document.querySelector('#NextBtn');
        if (button1 && button2) {
            setTimeout(function() {button1.click()}, 3000);
            setTimeout(function() {button2.click()}, 5000);
        }

        // part 2
        const part2domainRegex = /gplinks.co\/[^/#]+\/(?:#|\?pid=)/
        if (part2domainRegex.test(window.location.href))  {
            let button3 = document.querySelector('a.get-link');
            setTimeout(function() {button3.click()}, 6000);
        }

    });

})();