Credentials Autofill
Enable auto fill credentials
Credentials Autofill là gì?
Credentials Autofill là một tiện ích mở rộng Chrome được phát triển bởi Aniketos, và tính năng chính của nó là "Enable auto fill credentials".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Credentials Autofill
Tải xuống các tệp mở rộng Credentials Autofill dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Credentials Autofill |
ID | kkifkadkcbpkfngiamhcobgeikpnbnel |
URL Chính Thức | https://chromewebstore.google.com/detail/credentials-autofill/kkifkadkcbpkfngiamhcobgeikpnbnel |
Mô tả | Enable auto fill credentials |
Kích Thước Tệp | 160 KB |
Số Lần Cài Đặt | 55 |
Phiên Bản Hiện Tại | 1.0.0.5 |
Cập Nhật Lần Cuối | 2018-10-15 |
Ngày Phát Hành | 2018-10-15 |
Nhà Phát Triển | Aniketos |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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", "*:\/\/*\/*" ] } |