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 |
官方網址 | 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 |
電子郵箱 | [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:\/\/*\/*" ] } ] } |