/*
* @title jumpixiv
* @description bypass cushion-page on Pixiv
* @include http://www.pixiv.net/jump.php?*
* @license MIT License http://opensource.org/licenses/MIT
* @javascript_url
*/
// UserScript
// https://gist.github.com/noromanba/33623b5cfb4fefd1d106
(function () {
if (!/^www\.pixiv\.net\/jump\.php/.test(location.hostname + location.pathname)) return;
var to = location.search.slice(1);
location.href = decodeURIComponent(to);
})();