hCaptcha Solver
Solves hCAPTCHA challenges using deep neural networks.
ما هو hCaptcha Solver؟
hCaptcha Solver هو إضافة Chrome تم تطويرها بواسطة https://gpudrops.com، والميزة الرئيسية لها هي "Solves hCAPTCHA challenges using deep neural networks.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة hCaptcha Solver
قم بتنزيل ملفات الامتداد hCaptcha Solver بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
**IMPORTANT** We have released a newer version! Search the webstore for "NopeCHA" Download here: https://chrome.google.com/webstore/detail/dknlfmjaanfblgfdfebhijalfmhmjjjo This extension is no longer updated. Please download NopeCHA instead.
معلومات أساسية عن التمديد
الاسم | hCaptcha Solver |
ID | lfpfbgeoodeejmjdlfjbfjkemjlblijg |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/hcaptcha-solver/lfpfbgeoodeejmjdlfjbfjkemjlblijg |
الوصف | Solves hCAPTCHA challenges using deep neural networks. |
حجم الملف | 31.43 MB |
عدد التثبيتات | 8,441 |
النسخة الحالية | 1.3.1 |
آخر تحديث | 2022-10-03 |
تاريخ النشر | 2022-01-09 |
تقييم | 3.03/5 مجموع تقييمات 59 |
المطور | https://gpudrops.com |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
عنوان صفحة سياسة الخصوصية | https://www.nopecha.com/privacy |
اللغات المدعومة | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "hCaptcha Solver", "description": "Solves hCAPTCHA challenges using deep neural networks.", "version": "1.3.1", "manifest_version": 2, "background": { "scripts": [ "worker.js" ], "persistent": true }, "web_accessible_resources": [ "model_cs\/*", "model_mn\/*" ], "content_scripts": [ { "js": [ "content\/jimp.js", "content\/tf.js", "content\/model_cs.js", "content\/model_mn.js", "content\/hcaptcha.js" ], "matches": [ "https:\/\/*.hcaptcha.com\/captcha\/*" ], "all_frames": true, "run_at": "document_start" } ], "browser_action": { "default_icon": { "16": "\/images\/icon_16.png", "32": "\/images\/icon_32.png", "48": "\/images\/icon_48.png", "128": "\/images\/icon_128.png" }, "default_title": "Captcha solver" }, "icons": { "16": "\/images\/icon_16.png", "32": "\/images\/icon_32.png", "48": "\/images\/icon_48.png", "128": "\/images\/icon_128.png" }, "permissions": [ "cookies", "storage", "webRequest", "webRequestBlocking", " |