├── README.md ├── LICENSE.md ├── console-Deobfuscator.js └── console.js /README.md: -------------------------------------------------------------------------------- 1 | # 💥 💥 بات زدن اتوماتیک تسک های Intract نسخه محدود ! 💥 💥 2 | https://github.com/user-attachments/assets/c7d4efbf-05e2-4649-a536-3883cc905914 3 | 4 | ## برای اجرا کافیه کد را داخل بخش console مرورگر پیست کنید و بزنید اینتر و چند ثانیه ای صبر کنید ! 5 | 6 | ### 🔸 دقت کنید این نسخه که در اینجا براتون قراردادم نمیتونه تسک هایی مثل دیسکورد یا فالو اسپیس و تلگرام رو بزنه - با این حال خیلی زیاد به دردتون میخوره 7 | 8 | ### 🔸 این اکستنشن هیچ دسترسی از شما نمیخواد ،⚠️ تمامی کد ها قابل مطالعه است پس با تصمیم خودتون از این ابزار استفاده کنید ! ⛔ 9 | 10 | ## این کد شامل [License](https://github.com/xONEIROS/AutoComplete-TasksFor-intract/blob/main/LICENSE.md) است و هرگونه کپی برداری از ان مجاز نیست 11 | 12 | 13 | 14 | ## برای حمایت و توسعه بیشتر ، لطفا اکانت گیتهاب را فالو کنید ✔️ و به پروژه های منتشر شده ستاره بدهید⭐ 15 | 16 |
17 |

18 | 19 | 🆔 twitter 20 | 21 | | 22 | 23 | 🆔 telegram 24 | 25 |

26 |
27 | 28 | > -------------------------------------------- 29 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- 1 | # License 2 | 3 | All rights reserved. Unauthorized copying, distribution, modification, or any other use of this code or any part of it, is strictly prohibited unless explicit permission is granted by the author. 4 | 5 | ## Terms and Conditions 6 | 7 | 1. **No Copying**: You may not copy, reproduce, distribute, display, or otherwise use this code for any purpose without explicit permission from the author. 8 | 9 | 2. **No Redistribution**: Redistribution of this code or any part of it is strictly prohibited. 10 | 11 | 3. **No Modification**: You may not modify, adapt, or create derivative works based on this code without explicit permission from the author. 12 | 13 | 4. **No Commercial Use**: You may not use this code for commercial purposes without explicit permission from the author. 14 | 15 | 5. **Disclaimer**: This code is provided "as is", without warranty of any kind, express or implied, including but not limited to the warranties of merchantability, fitness for a particular purpose, and noninfringement. In no event shall the author be liable for any claim, damages, or other liability, whether in an action of contract, tort, or otherwise, arising from, out of, or in connection with the code or the use or other dealings in the code. 16 | 17 | ## Contact 18 | 19 | For any inquiries or permission requests, please contact the author at [xon3iros@gmail.com]. 20 | -------------------------------------------------------------------------------- /console-Deobfuscator.js: -------------------------------------------------------------------------------- 1 | function clickTasksAndVerify() { 2 | const taskElements = document.querySelectorAll('._task_trigger_container_1h9z2_1'); 3 | 4 | if (taskElements.length === 0) { 5 | console.log('No task elements found.'); 6 | return; 7 | } 8 | 9 | taskElements.forEach((element, index) => { 10 | const clickEvent = new MouseEvent('click', { 11 | bubbles: true, 12 | cancelable: true, 13 | view: window 14 | }); 15 | element.dispatchEvent(clickEvent); // Dispatch a simulated click event 16 | console.log(`Clicked on task element ${index + 1}`); 17 | }); 18 | 19 | console.log(`Clicked on ${taskElements.length} task element(s) in total.`); 20 | 21 | 22 | const checkAndClickVerifyButtons = () => { 23 | const verifyButtons = document.querySelectorAll('button[data-verify-button-status="idle"]._container_d8fl8_1'); 24 | if (verifyButtons.length === 0) { 25 | console.log('No verify buttons found. Retrying...'); 26 | setTimeout(checkAndClickVerifyButtons, 2000); 27 | return; 28 | } 29 | 30 | verifyButtons.forEach((button, index) => { 31 | const clickEvent = new MouseEvent('click', { 32 | bubbles: true, 33 | cancelable: true, 34 | view: window 35 | }); 36 | button.dispatchEvent(clickEvent); // Dispatch a simulated click event 37 | console.log(`Clicked on verify button ${index + 1}`); 38 | }); 39 | 40 | console.log(`Clicked on ${verifyButtons.length} verify button(s) in total.`); 41 | }; 42 | setTimeout(checkAndClickVerifyButtons, 3000); 43 | } 44 | 45 | clickTasksAndVerify(); 46 | -------------------------------------------------------------------------------- /console.js: -------------------------------------------------------------------------------- 1 | (function(_0x12a92b,_0x4b25e7){const _0x2d5038=_0x17b1,_0x25ef74=_0x12a92b();while(!![]){try{const _0x22aff0=parseInt(_0x2d5038(0x74))/0x1*(parseInt(_0x2d5038(0x7b))/0x2)+parseInt(_0x2d5038(0x89))/0x3+parseInt(_0x2d5038(0x76))/0x4+-parseInt(_0x2d5038(0x84))/0x5+-parseInt(_0x2d5038(0x7a))/0x6*(-parseInt(_0x2d5038(0x85))/0x7)+-parseInt(_0x2d5038(0x7f))/0x8*(parseInt(_0x2d5038(0x77))/0x9)+-parseInt(_0x2d5038(0x78))/0xa;if(_0x22aff0===_0x4b25e7)break;else _0x25ef74['push'](_0x25ef74['shift']());}catch(_0x56f5bb){_0x25ef74['push'](_0x25ef74['shift']());}}}(_0x49f4,0x87cfd));function clickTasksAndVerify(){const _0x1a5d06=_0x17b1,_0x1e552d=document[_0x1a5d06(0x75)](_0x1a5d06(0x72));if(_0x1e552d[_0x1a5d06(0x87)]===0x0){console[_0x1a5d06(0x7d)](_0x1a5d06(0x81));return;}_0x1e552d[_0x1a5d06(0x82)]((_0xf1c58e,_0x266296)=>{const _0x5ec483=_0x1a5d06,_0x169669=new MouseEvent('click',{'bubbles':!![],'cancelable':!![],'view':window});_0xf1c58e[_0x5ec483(0x88)](_0x169669),console[_0x5ec483(0x7d)](_0x5ec483(0x86)+(_0x266296+0x1));}),console[_0x1a5d06(0x7d)](_0x1a5d06(0x73)+_0x1e552d[_0x1a5d06(0x87)]+_0x1a5d06(0x80));const _0x487474=()=>{const _0x1c5183=_0x1a5d06,_0x5907a6=document[_0x1c5183(0x75)]('button[data-verify-button-status=\x22idle\x22]._container_d8fl8_1');if(_0x5907a6[_0x1c5183(0x87)]===0x0){console[_0x1c5183(0x7d)](_0x1c5183(0x7e)),setTimeout(_0x487474,0x7d0);return;}_0x5907a6[_0x1c5183(0x82)]((_0x2f0dbb,_0x4a4db6)=>{const _0x4584cc=_0x1c5183,_0x15a9bd=new MouseEvent(_0x4584cc(0x79),{'bubbles':!![],'cancelable':!![],'view':window});_0x2f0dbb['dispatchEvent'](_0x15a9bd),console['log'](_0x4584cc(0x83)+(_0x4a4db6+0x1));}),console[_0x1c5183(0x7d)](_0x1c5183(0x73)+_0x5907a6[_0x1c5183(0x87)]+_0x1c5183(0x7c));};setTimeout(_0x487474,0xbb8);}function _0x49f4(){const _0x26d139=['click','1242MTYPAZ','88372zVAvjB','\x20verify\x20button(s)\x20in\x20total.','log','No\x20verify\x20buttons\x20found.\x20Retrying...','9496wIfCCm','\x20task\x20element(s)\x20in\x20total.','No\x20task\x20elements\x20found.','forEach','Clicked\x20on\x20verify\x20button\x20','2446560pzOGHi','36057NnGFlZ','Clicked\x20on\x20task\x20element\x20','length','dispatchEvent','1120143lGyrJy','._task_trigger_container_1h9z2_1','Clicked\x20on\x20','8jpqfBx','querySelectorAll','4157156yYXOOn','3420amCwJJ','13357580lMhApg'];_0x49f4=function(){return _0x26d139;};return _0x49f4();}function _0x17b1(_0x5a021d,_0x31cd16){const _0x49f490=_0x49f4();return _0x17b1=function(_0x17b197,_0x599a02){_0x17b197=_0x17b197-0x72;let _0x245a5c=_0x49f490[_0x17b197];return _0x245a5c;},_0x17b1(_0x5a021d,_0x31cd16);}clickTasksAndVerify(); 2 | --------------------------------------------------------------------------------