Greasy Fork is available in English.
place the image at the top of the screen when loading an illustration page
当前为
// ==UserScript==
// @name Pixiv Image on top
// @namespace shurikn.com
// @description place the image at the top of the screen when loading an illustration page
// @include *://www.pixiv.net/*
// @version 1.2
// @require http://greasyfork.icu/scripts/5392-waitforkeyelements/code/WaitForKeyElements.js?version=19641
// @require http://code.jquery.com/jquery-latest.js
// @grant none
// ==/UserScript==
function scrollImageToTop(elements)
{
elements[0].scrollIntoView();
}
waitForKeyElements ("._2r_DywD", scrollImageToTop);