GradTag Stealer

Adds a download button to gradtag images

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// ==UserScript==
// @name         GradTag Stealer
// @namespace    https://gist.github.com/Pseudorizer/27abc3f643ad61c6923513c34e9b1c3a
// @version      1.0.1
// @description  Adds a download button to gradtag images
// @author       Pseudorizer <https://github.com/Pseudorizer>
// @match        https://photos.gradtag.co.uk/gradtag-*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=gradtag.co.uk
// @grant        none
// @license      MIT
// ==/UserScript==

(function() {
    'use strict';

    const run = () => {
        const images = document.querySelector('.grid');

        const urlRegex = /url\("(.+?)"\)/i;

        for (const image of images.childNodes) {
            const imageSrc = image.childNodes[0];
            const originalButton = image.childNodes[1];

            const imageUrl = imageSrc.style.backgroundImage;
            const imageUrlMatch = imageUrl.match(urlRegex)[1];

            const clonedButton = originalButton.cloneNode(true);
            clonedButton.style.right = '7rem';

            clonedButton.addEventListener('click', () => {
                window.open(imageUrlMatch);
            });

            const clonedButtonIcon = clonedButton.childNodes[0];
            clonedButtonIcon.classList.replace('fa-search', 'fa-download');
            clonedButtonIcon.style.transform = 'unset';

            image.insertBefore(clonedButton, originalButton);
        }
    };

    window.addEventListener('load', () => {
        const targetNode = document.body;

        const callback = (mutationList, observer) => {
            for (const mutation of mutationList) {
                for (const addedNode of mutation.addedNodes) {
                    if (addedNode.classList && addedNode.classList.contains('grid')) {
                        observer.disconnect();
                        run();
                    }
                }
            }
        };

        const observer = new MutationObserver(callback);

        observer.observe(targetNode, { attributes: false, childList: true, subtree: true });
    });
})();