NativeScropt

LoremLoremLorem.

2018-05-26 या दिनांकाला. सर्वात नवीन आवृत्ती पाहा.

लेखक
laptopapik
रेटिंग
0 0 0
आवृत्ती
0.0.1
बनवली
2018-05-26
अपडेट केली
2018-05-26
आकार
707 Bytes
License
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);