InkBunny Smart Image Opener

Automatically open images in full size on InkBunny

  1. // ==UserScript==
  2. // @name InkBunny Smart Image Opener
  3. // @description Automatically open images in full size on InkBunny
  4. // @version 0.0.4
  5. // @author Lourie Parker
  6. // @license MIT
  7. // @match https://*inkbunny.net/s/*
  8. // @require http://cdn.jsdelivr.net/jquery/2.1.3/jquery.min.js
  9. // @grant none
  10. // @namespace https://greasyfork.org/users/941226
  11. // ==/UserScript==
  12.  
  13. (function() {
  14. 'use strict';
  15.  
  16. console.log("Script began its work.");
  17. // Try to catch the full image URL.
  18. const linkElement = document.querySelector('a[href*="metapix.net/files/full"]');
  19. const linkHref = linkElement.href;
  20. if (linkHref) {
  21. console.log("Direct image URL found.");
  22. }
  23.  
  24. // Check if the page opened through the post (contains #pictop)
  25. if (location.hash.includes('pictop')) {
  26. console.log("The #pictop tag found, moving to the direct link.");
  27. window.location.href = linkHref; // Open direct URL
  28. return;
  29. }
  30.  
  31. // Check if the post is multipage post.
  32. const element = document.querySelector('img[title="page 2"]'); // Seek for title = "page 2"
  33. if (element) {
  34. console.log("Post is multipage post. Adding the #multipage tag.");
  35. location.hash = 'multipage'; // Add the #multipage tag to prevent redirecting.
  36. }
  37.  
  38. // Check if not #multipage post, go to direct URL.
  39. if (!location.hash.includes('multipage')) {
  40. console.log("This is the single image post. Redirecting.");
  41. window.location.href = linkHref; // Open direct URL
  42. return;
  43. }
  44. console.log("Redirect had not been made. The page contains #multipage tag or the direct link not found.");
  45. }
  46. )();