Bài đăng

Đang hiển thị bài đăng từ Tháng 11, 2021

Code Javascript (F12 dev tool)

   javascript:(function () { var script = document.createElement('script'); script.src="//cdn.jsdelivr.net/npm/eruda"; document.body.appendChild(script); script.onload = function () { eruda.init() } })(); video hướng dẫn:  ấn vào đây   cũng là từ 2021 tùy vào nhân phẩm mỗi ng có ng làm dc còn lại thì ko chắc thế =P ngoài hack/cheat ra đây là một công cụ khá tuyệt đấy:v F12 trên điện thoại mọi người tò mò thì xem clip mình hướng dẫn dùng code này nha  

Code Duo ( 2022 but just work with some lesson )

https://www.youtube.com/channel/UC_OLBj-iftWE6IgC1wPjtCQ ung ho toi 1 sub nao // ==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...