// ==UserScript== // @name Restore old Pixiv bookmarks // @namespace shurikn // @description This script restores the old bookmark behavior on Pixiv. // @include https://www.pixiv.net/member_illust.php?* // @version 1 // @require https://greasyfork.org/scripts/5392-waitforkeyelements/code/WaitForKeyElements.js?version=19641 // @require http://code.jquery.com/jquery-latest.js // @grant none // @downloadURL none // ==/UserScript== function changeFavButton(elements) { var $button=elements.find("button"); if($button.length>0) { var illustId=new URLSearchParams(window.location.search).get('illust_id'); $button.on('click',function(event){ window.location="/bookmark_add.php?type=illust&illust_id="+illustId; event.stopImmediatePropagation(); }); } } waitForKeyElements ("._1tzR6xn", changeFavButton);