Password Generator (With DinoPass)
This extension allows you to quickly generate passwords using either random characters or the DinoPass (pronounceable password) API.
Password Generator (With DinoPass)とは何ですか?
Password Generator (With DinoPass)はDominic Kirbyによって開発されたChromeの拡張機能で、その主な機能は「This extension allows you to quickly generate passwords using either random characters or the DinoPass (pronounceable password) API.」です。
Password Generator (With DinoPass)拡張機能のCRXファイルをダウンロード
Password Generator (With DinoPass)拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
This extension allows you to quickly generate passwords using either random characters or the DinoPass (pronounceable password) API. Check out the code: https://github.com/domkirby/Chrome-Password-Generator UPDATE 1.5.1: We set a max length limit on the random password to help prevent crashing. NOTE: We do not save or store these values. DinoPass password are generated and immediately forgotten. The random passwords are generated by your browser.
拡張機能の基本情報
名前 | Password Generator (With DinoPass) |
ID | bchnjebifjbfmnnkiagdfjeohfjpfhfk |
公式URL | https://chromewebstore.google.com/detail/password-generator-with-d/bchnjebifjbfmnnkiagdfjeohfjpfhfk |
説明 | This extension allows you to quickly generate passwords using either random characters or the DinoPass (pronounceable password) API. |
ファイルサイズ | 34.83 KB |
インストール数 | 482 |
現在のバージョン | 1.5.1 |
最終更新日 | 2017-05-29 |
公開日 | 2017-05-29 |
評価 | 5.00/5 合計 3 レビュー |
開発者 | Dominic Kirby |
Eメール | [email protected] |
支払い方法 | free |
対応言語 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Password Generator (With DinoPass)", "description": "This extension allows you to quickly generate passwords using either random characters or the DinoPass (pronounceable password) API.", "version": "1.5.1", "browser_action": { "default_icon": "icon.png", "default_popup": "dpass.html" }, "permissions": [ "activeTab" ], "content_scripts": [ { "js": [ "jquery.min.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ] } ] } |