Pixiv Image on top

place the image at the top of the screen when loading an illustration page

Ajankohdalta 22.6.2017. Katso uusin versio.

// ==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.1
// @grant       none
// ==/UserScript==

var elements = document.getElementsByClassName('works_display');
elements[0].scrollIntoView();