Credentials Autofill
Enable auto fill credentials
Credentials Autofillとは何ですか?
Credentials AutofillはAniketosによって開発されたChromeの拡張機能で、その主な機能は「Enable auto fill credentials」です。
拡張機能のスクリーンショット
Credentials Autofill拡張機能のCRXファイルをダウンロード
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", "*:\/\/*\/*" ] } |