Autofill Checker
Check what the chrome autofill actually filled
ما هو Autofill Checker؟
Autofill Checker هو إضافة Chrome تم تطويرها بواسطة https://bramas.fr، والميزة الرئيسية لها هي "Check what the chrome autofill actually filled".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Autofill Checker
قم بتنزيل ملفات الامتداد Autofill Checker بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
معلومات أساسية عن التمديد
الاسم | Autofill Checker |
ID | nfdenjdodgbjbcbocechcbkhncakpieb |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/autofill-checker/nfdenjdodgbjbcbocechcbkhncakpieb |
الوصف | Check what the chrome autofill actually filled |
حجم الملف | 15.19 KB |
عدد التثبيتات | 143 |
النسخة الحالية | 1.2 |
آخر تحديث | 2017-01-07 |
تاريخ النشر | 2017-01-07 |
تقييم | 3.67/5 مجموع تقييمات 3 |
المطور | https://bramas.fr |
نوع الدفع | free |
موقع الإضافة | https://github.com/Bramas/autofill-checker |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Autofill Checker", "description": "Check what the chrome autofill actually filled", "version": "1.2", "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "content.js" ], "css": [ "style.css" ], "run_at": "document_idle" } ], "background": { "persistent": false, "scripts": [ "bg.js" ] }, "page_action": { "default_icon": "icon.png", "default_popup": "popup.html" }, "permissions": [ "activeTab", "background" ], "icons": { "192": "icon.png" } } |