您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Automatically plays the next video in the list.
// ==UserScript== // @name KissAnime AutoPlay // @description Automatically plays the next video in the list. // @locale en // @namespace https://greasyfork.org/en/users/29660-bmn // @author Fenrir Oorgata // @include *://kissanime.com/* // @include *://kisscartoon.me/* // @include *://kissanime.to/* // @include *://kissasian.com/* // @version 2016.05.17 // @grant none // ==/UserScript== // Copyright (c) 2016 Fenrir Oorgata; MIT License function playNext(e) { var button_img = document.getElementById('btnNext'); var button = button_img.parentNode; button.click(); } var video = document.getElementById('my_video_1_html5_api'); video.addEventListener('ended', playNext, false);