Credentials Autofill
Enable auto fill credentials
ما هو Credentials Autofill؟
Credentials Autofill هو إضافة Chrome تم تطويرها بواسطة Aniketos، والميزة الرئيسية لها هي "Enable auto fill credentials".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Credentials Autofill
قم بتنزيل ملفات الامتداد Credentials Autofill بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
This extension allows you to save credentials for hosts. Each form input containing "user" or "password" in its name attribute will be filled with these data after focus event on form inputs appropriately.
معلومات أساسية عن التمديد
الاسم | Credentials Autofill |
ID | kkifkadkcbpkfngiamhcobgeikpnbnel |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/credentials-autofill/kkifkadkcbpkfngiamhcobgeikpnbnel |
الوصف | Enable auto fill credentials |
حجم الملف | 160 KB |
عدد التثبيتات | 55 |
النسخة الحالية | 1.0.0.5 |
آخر تحديث | 2018-10-15 |
تاريخ النشر | 2018-10-15 |
المطور | Aniketos |
نوع الدفع | free |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Credentials Autofill", "version": "1.0.0.5", "description": "Enable auto fill credentials", "browser_action": { "default_icon": "icons\/icon16_disabled.png", "default_title": "Auto-fill credentials", "default_popup": "popup.html" }, "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "background": { "scripts": [ "event_script.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "jquery\/jquery-3.2.0.min.js", "content_script.js" ] } ], "permissions": [ "tabs", "*:\/\/*\/*" ] } |