AIBooru: Pixiv filename to artwork link

A button to convert Pixiv filename to an artwork link when uploading to AIBooru

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey, το Greasemonkey ή το Violentmonkey για να εγκαταστήσετε αυτόν τον κώδικα.

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey ή το Violentmonkey για να εγκαταστήσετε αυτόν τον κώδικα.

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey ή το Violentmonkey για να εγκαταστήσετε αυτόν τον κώδικα.

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey ή το Userscripts για να εγκαταστήσετε αυτόν τον κώδικα.

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

Θα χρειαστεί να εγκαταστήσετε μια επέκταση διαχείρισης κώδικα χρήστη για να εγκαταστήσετε αυτόν τον κώδικα.

(Έχω ήδη έναν διαχειριστή κώδικα χρήστη, επιτρέψτε μου να τον εγκαταστήσω!)

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.

(Έχω ήδη έναν διαχειριστή στυλ χρήστη, επιτρέψτε μου να τον εγκαταστήσω!)

// ==UserScript==
// @name         AIBooru: Pixiv filename to artwork link
// @namespace    http://tampermonkey.net/
// @license      Unlicense
// @version      2024-08-16
// @description  A button to convert Pixiv filename to an artwork link when uploading to AIBooru
// @author       @maimaimai
// @match        https://*aibooru.online/uploads/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=aibooru.online
// @resource     pixiv_icon https://www.google.com/s2/favicons?sz=16&domain=pixiv.net
// @grant        GM.getResourceUrl
// ==/UserScript==

// /!\
// Tampermonkey is recommended. Only tested on Chrome/Chromium at the moment

if(jQuery) {
    let element = jQuery('.post_source input');
    if(!element.length) return;

    let match = element.val().match(/(?<id>\d+)_p\d+.*?/);
    if(!match) return;

    let button = jQuery('<button style="margin-left: 0.5em"><img style="display: inline-block; height: 1em; margin-right: 0.5em;"></img>Linkify</button>');

    // Rails static assets seem to lack a generic filename that can be relied upon.
    // https://github.com/search?q=repo%3Aaibooruorg/aibooru%20image_pack_tag&type=code
    //
    // There's no /packs/static/public/images/pixiv-logo.png or /packs/static/public/images/pixiv-logo-{128x128,16x16,48x48}.png
    // They contain a hash in the filename. We have no idea where it comes from on the frontend side.
    if(typeof(GM.getResourceUrl) !== 'undefined') {
        GM.getResourceUrl('pixiv_icon')
        .then(resource => jQuery(':first-child', button).attr('src', resource))
        .catch(err => {
            console.error('[Userscript: AIBooru: pixiv filename to artwork link]', err);
            jQuery(':first-child', button).attr('src', 'https://www.pixiv.net/favicon.ico');
        });
    } else {
        jQuery(':first-child', button).attr('src', 'https://www.pixiv.net/favicon.ico');
    };

    button.insertAfter(element).click(
        e => {
            e.preventDefault();
            element.val(`https://www.pixiv.net/en/artworks/${match.groups.id}`);
        }
    );

    element.css('max-width', '70%');
}