Credentials Autofill
Enable auto fill credentials
Credentials Autofillคืออะไร?
Credentials Autofill เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Aniketos และคุณลักษณะหลักของมันคือ "Enable auto fill credentials"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Credentials Autofill
ดาวน์โหลดไฟล์ส่วนขยาย Credentials Autofill ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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", "*:\/\/*\/*" ] } |