NativeScropt

LoremLoremLorem.

目前為 2018-05-26 提交的版本,檢視 最新版本

作者
laptopapik
評價
0 0 0
版本
0.0.1
建立日期
2018-05-26
更新日期
2018-05-26
尺寸
707 位元組
授權條款
MIT License.
腳本執行於
所有網站

// ==UserScript==
// @name NativeScropt
// @author Lp
// @version 0.0.1
// @description LoremLoremLorem.
// @license MIT License.
// ==/UserScript==
//***********************************
function auto(addInterval, nextInterval, newTranslateInterval) {
// click translate
$('.translate-mode-icon').click();

setTimeout(function() {
$('.right button').click();
}, addInterval * 1000);

setTimeout(function() {
$('.next-sentence-translate-view').click();
}, nextInterval * 1000);

setTimeout(function() {
auto(addInterval, nextInterval, newTranslateInterval);
}, newTranslateInterval * 1000);
};

auto(2, 2.5, 3);