PasswordMaker
With a single password, generate a unique password for each site. Based on passwordmaker.org
PasswordMaker क्या है?
PasswordMaker https://blog.brunomassa.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "With a single password, generate a unique password for each site. Based on passwordmaker.org"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में PasswordMaker एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Instead remembering several passwords for each each you have an account, you *need only to remember one*. This simple application generates a unique password combining your master password and the name of the site you are visiting. So even using the same password over and over, each site will get a different and unique. So, even if a site is hacked and your password stolen, you protect your other sites from being invaded using your password. # Features * Automatically get the site address -URL- from the page you are current seeing * Get different parts of the site address, like protocol and subpaths (www) * Change the method of the generator: SHA, MD5, HMAC * Create different profiles, so for sites that only allow numbers and letters can use one profile, while other you can use a complete set, including symbols * Save the master password in the disk, in the RAM (reseted when you close browser) or never save it anywere
एक्सटेंशन की मूल जानकारी
नाम | PasswordMaker |
ID | gnfjppomohbcojfccghjcgahfofgmgdn |
आधिकारिक URL | https://chromewebstore.google.com/detail/passwordmaker/gnfjppomohbcojfccghjcgahfofgmgdn |
विवरण | With a single password, generate a unique password for each site. Based on passwordmaker.org |
फ़ाइल का आकार | 109 KB |
स्थापना संख्या | 78 |
वर्तमान संस्करण | 2.3 |
अंतिम अपडेट | 2013-07-05 |
प्रकाशन तिथि | 2013-07-04 |
रेटिंग | 3.00/5 कुल 2 रेटिंग्स |
डेवलपर | https://blog.brunomassa.com |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en-US |
manifest.json | |
{ "name": "PasswordMaker", "description": "With a single password, generate a unique password for each site. Based on passwordmaker.org", "version": "2.3", "manifest_version": 2, "options_page": "options.html", "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx", "background": { "scripts": [ "background.js" ], "persistent": false }, "browser_action": { "default_icon": "icon48.png", "default_popup": "popup.html" }, "content_scripts": [ { "all_frames": true, "js": [ "jquery.min.js", "content.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*", "file:\/\/*" ] } ], "icons": { "128": "icon128.png", "16": "icon16.png", "48": "icon48.png" }, "permissions": [ "tabs" ] } |