您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Autoplay soap2play shows and movies when the page loads. Written in Tampermonkey.
// ==UserScript== // @name Soap2Day Autoplay // @version 1.3 // @description Autoplay soap2play shows and movies when the page loads. Written in Tampermonkey. // @author n0rmancodes // @include https://soap2day.to/* // @include https://soap2day.im/* // @include https://soap2day.ac/* // @include https://soap2day.se/* // @include https://s2dfree.to/* // @include https://s2dfree.cc/* // @include https://s2dfree.de/* // @include https://s2dfree.is/* // @include https://s2dfree.in/* // @include https://s2dfree.nl/* // @grant none // @license The Unlicense // @source https://github.com/n0rmancodes/soap2day-autoplay // @namespace github.com // @namespace greasyfork.org // ==/UserScript== (function() { 'use strict'; if (document.querySelector("video")) { document.querySelector("video").play(); clearInterval(a); } else { var a = setInterval(function () { if (document.querySelector("video")) { document.querySelector("video").play(); clearInterval(a); } }, 2000) } })();