InkBunny Smart Image Opener

Automatically open images in full size on InkBunny

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Greasemonkey lub Violentmonkey.

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Violentmonkey.

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Violentmonkey.

Aby zainstalować ten skrypt, wymagana będzie instalacja rozszerzenia Tampermonkey lub Userscripts.

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

Aby zainstalować ten skrypt, musisz zainstalować rozszerzenie menedżera skryptów użytkownika.

(Mam już menedżera skryptów użytkownika, pozwól mi to zainstalować!)

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.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Musisz zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

(Mam już menedżera stylów użytkownika, pozwól mi to zainstalować!)

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