InkBunny Smart Image Opener

Automatically open images in full size on InkBunny

K instalaci tototo skriptu si budete muset nainstalovat rozšíření jako Tampermonkey, Greasemonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Userscripts.

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

K instalaci tohoto skriptu si budete muset nainstalovat manažer uživatelských skriptů.

(Už mám manažer uživatelských skriptů, nechte mě ho nainstalovat!)

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.

(Už mám manažer uživatelských stylů, nechte mě ho nainstalovat!)

// ==UserScript==
// @name          InkBunny Smart Image Opener
// @description   Automatically open images in full size on InkBunny
// @version       0.0.4
// @author        Lourie Parker
// @license MIT
// @match         https://*inkbunny.net/s/*
// @require       http://cdn.jsdelivr.net/jquery/2.1.3/jquery.min.js
// @grant    none
// @namespace https://greasyfork.org/users/941226
// ==/UserScript==

(function() {
    'use strict';

    console.log("Script began its work.");
    // Try to catch the full image URL.
    const linkElement = document.querySelector('a[href*="metapix.net/files/full"]');
    const linkHref = linkElement.href;
        if (linkHref) {
        console.log("Direct image URL found.");
        }

    // Check if the page opened through the post (contains #pictop)
    if (location.hash.includes('pictop')) {
        console.log("The #pictop tag found, moving to the direct link.");
        window.location.href = linkHref; // Open direct URL
        return;
    }

    // Check if the post is multipage post.
    const element = document.querySelector('img[title="page 2"]'); // Seek for title = "page 2"
    if (element) {
        console.log("Post is multipage post. Adding the #multipage tag.");
        location.hash = 'multipage'; // Add the #multipage tag to prevent redirecting.
    }

    // Check if not #multipage post, go to direct URL.
    if (!location.hash.includes('multipage')) {
        console.log("This is the single image post. Redirecting.");
        window.location.href = linkHref; // Open direct URL
        return;
    }
    console.log("Redirect had not been made. The page contains #multipage tag or the direct link not found.");
    }
)();