Skip to content

Instantly share code, notes, and snippets.

@ichii731
Created January 19, 2022 11:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ichii731/d5e22a000641b98fdaf5b35bed9bc3dd to your computer and use it in GitHub Desktop.
Save ichii731/d5e22a000641b98fdaf5b35bed9bc3dd to your computer and use it in GitHub Desktop.
Pixiv URL AutoSkip Userscript
// ==UserScript==
// @name Pixiv Auto Skipper
// @version 1
// @include /^(http|https):\/\/www\.pixiv\..+\/jump.php.*/
// @grant none
// @author ichii731
// ==/UserScript==
(function() {
window.location.href = decodeURIComponent(location.href.split('jump.php?')[1]);
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment