Secure Password Generator
Generates random secure passwords.
什么是Secure Password Generator?
Secure Password Generator是由mar.kolya开发的Chrome扩展程序,该扩展的主要功能是“Generates random secure passwords.”。
扩展截图
下载Secure Password Generator扩展crx文件
下载Secure Password Generator扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This add-on allows you to easily create random and secure passwords. Right click on any password field on the webpage and select "Secure Password Generator"/"Generate password". Newly generated password will be inserted into selected field. You can use "Insert previous password" context menu option if form requires you to repeat your password. You can also use "Secure Password Generator" button in top right corner of Firefox window to see last generated password, change settings and create new secure passwords. Hope this is useful. :)
扩展基本信息
名称 | Secure Password Generator |
ID | dapehldnfebpbfpfknddmlhghjlbjhdb |
官方URL | https://chromewebstore.google.com/detail/secure-password-generator/dapehldnfebpbfpfknddmlhghjlbjhdb |
简介 | Generates random secure passwords. |
文件大小 | 364 KB |
安装次数 | 7,344 |
当前版本 | 1.0.9 |
更新时间 | 2018-10-08 |
上架时间 | 2018-10-07 |
评分 | 4.84/5 共25次评分 |
开发者 | mar.kolya |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/mar-kolya/secure-password-generator |
支持的语言 | de,en,es,cs,ru |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "__MSG_extensionName__", "description": "__MSG_extensionDescription__", "version": "1.0.9", "default_locale": "en", "homepage_url": "https:\/\/addons.mozilla.org\/firefox\/addon\/secure-password-generator\/", "icons": { "16": "icons\/password-16.png", "32": "icons\/password-32.png", "48": "icons\/password-48.png", "64": "icons\/password-64.png" }, "permissions": [ "contextMenus", "activeTab", "storage" ], "browser_action": { "browser_style": true, "default_icon": { "16": "icons\/password-16.png", "32": "icons\/password-32.png", "48": "icons\/password-48.png", "64": "icons\/password-64.png" }, "default_title": "Secure Password Generator", "default_popup": "popup.html", "theme_icons": [ { "light": "icons\/password-16-light.png", "dark": "icons\/password-16.png", "size": 16 }, { "light": "icons\/password-32-light.png", "dark": "icons\/password-32.png", "size": 32 } ] }, "commands": { "generate-password": { "suggested_key": { "default": "Alt+G" }, "description": "Generate Password" }, "insert-previous-password": { "suggested_key": { "default": "Alt+L" }, "description": "Insert Previous Password" } }, "background": { "scripts": [ "dist\/init.js", "dist\/background.js" ] } } |