浏阳教育局慧读自动翻页

Automatically click next chapter link every second on lyjyj.huidu.com

// ==UserScript==
// @name         浏阳教育局慧读自动翻页
// @namespace    http://tampermonkey.net/
// @version      0.2
// @description  Automatically click next chapter link every second on lyjyj.huidu.com
// @author       You
// @match        http://lyjyj.huidu.com/*
// @grant        none
// @license MIT
// ==/UserScript==

(function() {
    'use strict';

    setInterval(function() {
        document.querySelector("li.read_next_chapeter a").click();
    }, 10000);
})();