Disable slide transition between images, they're annoying. 6/11/2021, 1:45:41 AM
As of
// ==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;
}
`);