您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Autosaver for IntCyoaCreator
当前为
// ==UserScript== // @name IntCyoaAutosaver // @namespace http://tampermonkey.net/ // @version 0.2 // @description Autosaver for IntCyoaCreator // @author Name0930 // @match https://cyoa.ltouroumov.ch/editor/* // @match https://intcyoacreator.onrender.com/ // @icon https://intcyoacreator.onrender.com/favicon.ico? // @grant none // @license MIT // ==/UserScript== (function() { 'use strict'; const minutes = 10 window.setInterval(function() { var save = document.querySelector("#app > div > div > nav > div.v-navigation-drawer__content > div > div:nth-child(1) > div:nth-child(7)") if (save) { save.click() setTimeout(function(){ var button = document.querySelector("#app > div.v-dialog__content.v-dialog__content--active > div > div > div.v-card__text > div > div > div:nth-child(2) > button > span") var goback = document.querySelector("#app > div.v-dialog__content.v-dialog__content--active > div > div > div.v-card__actions > button > span") if (button) { button.click() setTimeout(function(){goback.click()}, 5) } }, 5) } }, minutes*60000); })();