Greasy Fork is available in English.

930mh自动回顶

在亲亲漫画翻页浏览时自动返回页首

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name         930mh自动回顶
// @namespace    hoothin
// @version      0.1
// @description  在亲亲漫画翻页浏览时自动返回页首
// @author       hoothin
// @match        http://www.930mh.com/*
// @grant        unsafeWindow
// ==/UserScript==

(function() {
    'use strict';
    var next=document.querySelector(".img_land_next");
    if(next){
        next.addEventListener("click", function(){
            unsafeWindow.scrollTo(0, 0);
        });
    }
    var prev=document.querySelector(".img_land_prev");
    if(prev){
        prev.addEventListener("click", function(){
            unsafeWindow.scrollTo(0, 0);
        });
    }
})();