gennji.com image gallery

Click any of the images in articles for a gallery overlay.

Stan na 15-06-2021. Zobacz najnowsza wersja.

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        gennji.com image gallery
// @namespace   abdrool
// @match       https://gennji.com/post-*
// @grant       GM_addStyle
// @grant       GM_getResourceText
// @version     1.0
// @author      abdrool
// @icon        https://gennji.com/wp-content/uploads/2020/01/ddf800ca93715b2925d8013c210de622-32x32.png
// @description Click any of the images in articles for a gallery overlay.
// @require      http://code.jquery.com/jquery-latest.js
// @require      https://cdnjs.cloudflare.com/ajax/libs/baguettebox.js/1.11.1/baguetteBox.min.js
// @resource     css https://cdnjs.cloudflare.com/ajax/libs/baguettebox.js/1.11.1/baguetteBox.min.css
// ==/UserScript==

let customCss = `
#gallery {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column wrap;
}

#gallery img {
  padding-bottom: 20px;
}
`

$(document).ready(function() {
  let urls = $("article .blocks-gallery-item img").map(function() { return this.src }).get();
  
  $("article figure").empty();
  $("article figure").prepend("<div id='gallery'></div>");
  
  let galleryItems = urls.map(url => {
    return "<a href='" + url + "'><img src='" + url + "'></a>"
  });
  $("#gallery").append(galleryItems);
  
  GM_addStyle(GM_getResourceText('css'))
  GM_addStyle(customCss);
  baguetteBox.run("#gallery");
});