[New] Shortlink Maker

Enhances functionality on over 10 Shortlink-sites

目前為 2024-09-25 提交的版本,檢視 最新版本

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

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

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name         [New] Shortlink Maker
// @namespace    https://greasyfork.org/users/1162863
// @version      1.4.2
// @description  Enhances functionality on over 10 Shortlink-sites
// @author       Andrewblood
// @match        *://*/*
// @icon         https://coinfinity.top/favicon.ico
// @license      Copyright Andrewblood
// ==/UserScript==

(function() {
    'use strict';

    let helpers = {
        triggerMouseEvent: function (elm, eventType) {
            let clickEvent = document.createEvent('MouseEvents');
            clickEvent.initEvent (eventType, true, true);
            elm.dispatchEvent (clickEvent);
        },
        alternativeClick: function (elm) {
            helpers.triggerMouseEvent (elm, "mouseover");
            helpers.triggerMouseEvent (elm, "mousedown");
            helpers.triggerMouseEvent (elm, "mouseup");
            helpers.triggerMouseEvent (elm, "click");
        },
    }

    function waitForElementAndClick(selector) {
        let interval = setInterval(function() {
            let element = document.querySelector(selector);

            if (element && element.offsetHeight > 0 && !element.hasAttribute('disabled')) {
                helpers.alternativeClick(element);
                console.log("Element is clicked.");
                clearInterval(interval);
            }

        }, 500);
    }

    function waitForCaptchaAndClick(selector) {
        let interval = setInterval(function() {
            let element = document.querySelector(selector);
            let hcaptcha = document.querySelector(".h-captcha");
            let recaptcha = document.querySelector(".g-recaptcha");
            let recaptchaResponse = document.querySelector("#g-recaptcha-response");

            if (((hcaptcha && hcaptcha.lastElementChild.value.length > 0) || (recaptcha && recaptchaResponse.value.length > 0)) && (element && element.offsetHeight > 0 && !element.hasAttribute('disabled'))) {
                helpers.alternativeClick(element);
                console.log("Element is clicked.");
                clearInterval(interval);
            }

        }, 500);
    }

    function searchFirstButtonWithInnerText(text) {
        let interval = setInterval(function() {
            let buttons = document.querySelectorAll('button');

            for (let button of buttons) {
                if (button.innerText.includes(text) && !button.hasAttribute('disabled') && button.offsetHeight > 0) {
                    setTimeout(function () {
                        helpers.alternativeClick(button);
                        console.log("Element is clicked.");
                        clearInterval(interval);
                    }, 1000);
                    break;
                }
            }
        }, 500);
    }



    // FcLc
    if (window.location.href.includes("") ||
        window.location.href.includes("") ||
        window.location.href.includes("")){
        // waitForElementAndClick("");
        // waitForElementAndClick("");
    }

    // Ouo
    if (window.location.href.includes("ouo.press") ||
        window.location.href.includes("ouo.io")){
        waitForElementAndClick("#btn-main:not(.disabled)");
    }

    // ClksPro
    if (window.location.href.includes("financewrapper.net")){
        waitForCaptchaAndClick(".btn.btn-primary");
    }

    // Clicksfly
    if (window.location.href.includes("mythvista.com") ||
        window.location.href.includes("ss7.info") ||
        window.location.href.includes("vocalley.com") ||
        window.location.href.includes("yogablogfit.com") ||
        window.location.href.includes("healthfirstweb.com") ||
        window.location.href.includes("howifx.com")){
        waitForElementAndClick("#scroll > a > p");
        waitForElementAndClick("#getlink");
    }
    if (window.location.href.includes("clk.kim")){
        waitForElementAndClick(".btn:not(.disabled)");
        waitForCaptchaAndClick(".btn.btn-primary.btn-captcha");
    }

    // Cuty
    if (window.location.href.includes("cety.app")){
        waitForElementAndClick("#submit-button");
    }

    // CBShort
    if (window.location.href.includes("crazyblog.in") ||
        window.location.href.includes("videolyrics.in") ||
        window.location.href.includes("droplink") ||
        window.location.href.includes("tech5s.co")){
        waitForElementAndClick(".py-2.px-4");
        waitForElementAndClick(".btn.btn-success.btn-lg.get-link:not(.disabled)");
        waitForElementAndClick("#go_d");
        waitForElementAndClick("#go_d2");
        let interval = setInterval(function() {
            let element = document.querySelectorAll(".py-2.px-4")[1];
            if (element) {
                element.click();
                clearInterval(interval);
            }
        }, 500);
    }

    // Magnet + 1bitSpace
    if (window.location.href.includes("mgnet.xyz") ||
        window.location.href.includes("1bitspace.com") ||
        window.location.href.includes("1bit.space")){
        waitForElementAndClick("#continue-button");
        waitForElementAndClick(".button.is-rounded.is-fullwidth.is-outlined.is-link.rubberBand.animated.button-element-verification");
        waitForElementAndClick("#container-element-verification > div > button");
    }

    // FcLc
    if (window.location.href.includes("fc-lc.xyz") ||
        window.location.href.includes("fitdynamos.com") ||
        window.location.href.includes("gamezizo.com")){
        waitForElementAndClick("#invisibleCaptchaShortlink");
        waitForElementAndClick("#next");
        waitForElementAndClick("#scroll");
        waitForElementAndClick("#glink");
        waitForElementAndClick(".btn.btn-sm.btn-success.m-2:not(.disabled)");
    }

    // Cut-Urls
    if (window.location.href.includes("exego.app") ||
        window.location.href.includes("falpus.com")){
        waitForElementAndClick(".button.link-button:not(.disabled)");
    }

    // ClkSh
    if (window.location.href.includes("oii.la") ||
        window.location.href.includes("blogtechh.com") ||
        window.location.href.includes("wptohost.com")){
        waitForElementAndClick(".btn.btn-primary.btn-captcha");
        waitForElementAndClick("#scroll > a > p");
        waitForElementAndClick(".btn.btn-success:not(.disabled)");
    }

    // DutchyCorp2
    if (window.location.href.includes("abc.dutchycorp.space") ||
        window.location.href.includes("dutchycorp.ovh")){
        waitForElementAndClick("#proceed > font > b");
        waitForElementAndClick("#cl1 > center > a > font > b");
        waitForElementAndClick("#click-btn > font");
        waitForElementAndClick("#invisibleCaptchaShortlink");
        waitForElementAndClick(".pull-right:not(.disabled)");
        waitForElementAndClick(".skip-ad:not(.disabled)");
        waitForElementAndClick(".btn:not(.disabled)");
        waitForElementAndClick("#mainNav > div > div > div:nth-child(3) > div > div > a:not(.disabled)");
        let interval = setInterval(function() {
            let element = document.querySelectorAll("#click-btn > font")[1];
            if (element) {
                element.click();
                clearInterval(interval);
            }
        }, 500);
    }

    // ClkSh
    if (window.location.href.includes("blogsward.com") ||
        window.location.href.includes("blogtechh.com") ||
        window.location.href.includes("linkpay.top")){
        waitForElementAndClick("#begin-button");
        waitForElementAndClick("#continueBtn");
        waitForElementAndClick(".btn.btn-primary.btn-lg.get-link:not(.disabled)");
        if (document.querySelector("#wpsafe-link")){
            document.querySelector("#wpsafe-link").style.display = "block"
        }
    }

    // Fly
    if (window.location.href.includes("documentaryplanet.xyz") ||
        window.location.href.includes("substitutefor.com") ||
        window.location.href.includes("englishwritingsite.xyz") ||
        window.location.href.includes("sleeptube.xyz") ||
        window.location.href.includes("1side.xyz") ||
        window.location.href.includes("pulse3d.xyz")){
        setTimeout(function () {
            if (document.querySelector("#click") && document.querySelector("#click").offsetHeight > 0){
                location.reload();
            }
        }, 1000);
        searchFirstButtonWithInnerText("Step");
    }



})();