Better BookSusi.com gallery - no gallery transitions

Disable slide transition between images, they're annoying. 6/11/2021, 1:45:41 AM

2021-06-10 يوللانغان نەشرى. ئەڭ يېڭى نەشرىنى كۆرۈش.

// ==UserScript==
// @name        Better BookSusi.com gallery - no gallery transitions
// @namespace   Violentmonkey Scripts
// @match       https://booksusi.com/*
// @grant       GM_addStyle
// @version     1.0
// @author      -
// @description Disable slide transition between images, they're annoying. 6/11/2021, 1:45:41 AM
// @run-at      document-idle
// ==/UserScript==

GM_addStyle(`
  .blueimp-gallery > .slides > .slide {
    transition: none !important;
  }
`);