Bài đăng

Hình ảnh
  // ==UserScript== // @name Duolingo-Cheat-Tool // @namespace http://tampermonkey.net/ // @version 0.1 // @description Auto answer Duolingo script! // @author Tran Quy <tranphuquy19@gmail.com> // @match https://www.duolingo.com/skill* // @icon https://www.google.com/s2/favicons?domain=duolingo.com // @grant none // ==/UserScript==   const DEBUG = true ; let mainInterval ;   const dataTestComponentClassName = 'e4VJZ' ;   const TIME_OUT = 1 ;   // Challenge types const CHARACTER_SELECT_TYPE = 'characterSelect' ; const CHARACTER_MATCH_TYPE = 'characterMatch' ; // not yet const TRANSLATE_TYPE = 'translate' ; const LISTEN_TAP_TYPE = 'listenTap' ; const NAME_TYPE = 'name' ; const COMPLETE_REVERSE_TRANSLATION_TYPE = 'completeReverseTranslation' ; const LISTEN_TYPE = 'listen' ; const SELECT_TYPE = 'select' ; const JUDGE_TYPE = 'judge' ; c...