NativeScropt

LoremLoremLorem.

اعتبارا من 26-05-2018. شاهد أحدث إصدار.

المؤلف
laptopapik
التقييمات
0 0 0
الإصدار
0.0.1
تم إنشاؤه
26-05-2018
تم تحديثه
26-05-2018
Size
707 Bytes
الترخيص
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);