Scroll to download kurogaze

try to make your life easier!

As of 2019-10-07. See the latest version.

// ==UserScript==
// @name         Scroll to download kurogaze
// @namespace    https://greasyfork.org/en/users/158832
// @version      0.3
// @description  try to make your life easier!
// @author       Riztard
// @match        https://www.kurogaze.in/*indonesia*
// @license      MIT
// @grant        none
// ==/UserScript==

(function () {
  'use strict';

  setTimeout(func, 3000);

  function func() {

    var el = document.getElementsByClassName('dl-box')[0];
    el.scrollIntoView(false);
    window.scrollBy(0, 200)
  }
})();