Secure Password Generator
Generates random secure passwords.
Secure Password Generator क्या है?
Secure Password Generator mar.kolya द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Generates random secure passwords."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Secure Password Generator एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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" ] } } |