gplinks auto-skip

auto-click buttons for the gplinks link shortener

// ==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);
        }

    });

})();