Hashword
Generate a unique, secure password for every web site from one master password.
Hashword क्या है?
Hashword Michael Meisel द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Generate a unique, secure password for every web site from one master password."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Hashword एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
No password is ever stored within the extension, or anywhere else for that matter! They are generated on demand using a cryptographic hash function. The inputs are your master password and the site URL. This means you get the same unique password for each site on demand, but it cannot be used to discover your master password.
एक्सटेंशन की मूल जानकारी
नाम | Hashword |
ID | nkdpamnjhdjoncifjaoojhmfdmdknamo |
आधिकारिक URL | https://chromewebstore.google.com/detail/hashword/nkdpamnjhdjoncifjaoojhmfdmdknamo |
विवरण | Generate a unique, secure password for every web site from one master password. |
फ़ाइल का आकार | 156 KB |
स्थापना संख्या | 79 |
वर्तमान संस्करण | 0.6.3 |
अंतिम अपडेट | 2023-05-03 |
प्रकाशन तिथि | 2019-03-08 |
रेटिंग | 4.60/5 कुल 5 रेटिंग्स |
डेवलपर | Michael Meisel |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://meisel.dev/hashword/ |
सहायता पृष्ठ URL | https://github.com/mmeisel/hashword |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Hashword", "version": "0.6.3", "manifest_version": 2, "description": "Generate a unique, secure password for every web site from one master password.", "background": { "scripts": [ "rules.js", "background.js" ], "persistent": false }, "browser_action": { "default_title": "Hashword", "default_popup": "popup.html", "default_icon": { "16": "images\/icon16-inactive.png", "19": "images\/icon19-inactive.png", "32": "images\/icon32-inactive.png", "38": "images\/icon38-inactive.png" } }, "commands": { "_execute_browser_action": { "suggested_key": { "default": "Ctrl+Shift+P", "mac": "Command+Shift+P" } } }, "icons": { "16": "images\/icon16.png", "32": "images\/icon32.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "incognito": "spanning", "minimum_chrome_version": "46", "options_ui": { "page": "options.html", "chrome_style": true }, "permissions": [ "activeTab", "clipboardWrite", "declarativeContent", "storage" ] } |