Last active
January 28, 2024 23:42
-
-
Save xim/0e854c7f1deb7e5f5c9a1218c8328a74 to your computer and use it in GitHub Desktop.
Manhuascan page gap
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Manhuascan page gap | |
// @namespace https://gist.github.com/xim | |
// @version 2024-01-28 | |
// @description Add page gap to manhuascan | |
// @author xim | |
// @match https://manhuascan.com/manga/* | |
// @icon https://www.google.com/s2/favicons?sz=64&domain=manhuascan.com | |
// @downloadURL https://gist.github.com/xim/0e854c7f1deb7e5f5c9a1218c8328a74/raw/manhua-page-gap.user.js | |
// @updateURL https://gist.github.com/xim/0e854c7f1deb7e5f5c9a1218c8328a74/raw/manhua-page-gap.user.js | |
// @grant GM_addStyle | |
// ==/UserScript== | |
(function() { | |
'use strict'; | |
GM_addStyle('.chapter-image img { margin-bottom: 1.5em !important; }'); | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment