चर्चा » बनवण्याच्या विनंत्या
// ==UserScript==// @name Novelai自动刷图// @namespace http://tampermonkey.net/// @version 0.1// @description try to take over the world!// @author Mr.J.AND// @match https://novelai.net/image// @grant none// ==/UserScript==(function() { 'use strict'; console.log('自动点击!'); window.setInterval(function () { document.getElementsByClassName("sc-75a56bc9-37 jMyFmP")[0].click()}, 2000); // 就这么多代码})();
उत्तर पोस्ट करण्यासाठी साइन इन करा.
// ==UserScript==
// @name Novelai自动刷图
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author Mr.J.AND
// @match https://novelai.net/image
// @grant none
// ==/UserScript==
(function() {
'use strict';
console.log('自动点击!');
window.setInterval(function () {
document.getElementsByClassName("sc-75a56bc9-37 jMyFmP")[0].click()
}, 2000);
// 就这么多代码
})();