Skip to content

Instantly share code, notes, and snippets.

@xim
Last active January 28, 2024 23:42
Show Gist options
  • Save xim/0e854c7f1deb7e5f5c9a1218c8328a74 to your computer and use it in GitHub Desktop.
Save xim/0e854c7f1deb7e5f5c9a1218c8328a74 to your computer and use it in GitHub Desktop.
Manhuascan page gap
// ==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