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);