Chrome Passwords
With Chrome Passwords you just have to remember one password! Chrome Passwords does not store any sensitive information, such as…
Chrome Passwords क्या है?
Chrome Passwords Christoph Roeder द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "With Chrome Passwords you just have to remember one password! Chrome Passwords does not store any sensitive information, such as…"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Chrome Passwords एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
With Chrome Passwords you just have to remember one password! Chrome Passwords does not store any sensitive information, such as other password managers, it generates unique passwords for each website with your master password. For this, the open source algorithm of the well known Master Password App [1] is used. Through this open algorithm, apps are already available for all kinds of operating systems. (Windows, MacOS, IOS, Android, ... ) [1] https://masterpasswordapp.com
एक्सटेंशन की मूल जानकारी
नाम | |
ID | injddhenpdfbccendcpjghdclnadepnp |
आधिकारिक URL | https://chrome.google.com/webstore/detail/chrome-passwords/injddhenpdfbccendcpjghdclnadepnp |
विवरण | With Chrome Passwords you just have to remember one password! Chrome Passwords does not store any sensitive information, such as… |
फ़ाइल का आकार | 187 KB |
स्थापना संख्या | 213 |
वर्तमान संस्करण | 2.2 |
अंतिम अपडेट | 2021-01-08 |
प्रकाशन तिथि | 2016-02-05 |
रेटिंग | 4.67/5 कुल 3 रेटिंग्स |
डेवलपर | Christoph Roeder |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
सहायता पृष्ठ URL | https://github.com/brightdroid/chrome-passwords |
समर्थित भाषाएँ | de,en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Chrome Passwords", "version": "2.2", "default_locale": "en", "minimum_chrome_version": "38", "permissions": [ "activeTab", "declarativeContent", "storage" ], "icons": { "48": "images\/icon48.png", "128": "images\/icon128.png" }, "background": { "scripts": [ "scripts\/jquery.min.js", "scripts\/background.min.js", "scripts\/lib\/setImmediate-polyfill.js", "scripts\/lib\/pbkdf2.js", "scripts\/lib\/scrypt.js", "scripts\/lib\/mpw.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "scripts\/jquery.min.js", "scripts\/content.min.js" ], "all_frames": true } ], "web_accessible_resources": [ "images\/*.png", "scripts\/*.js.map" ], "options_page": "options.html", "page_action": { "default_title": "Chrome Passwords", "default_popup": "popup.html", "default_icon": "images\/icon38.png" }, "content_security_policy": "script-src 'self' http:\/\/localhost:* 'unsafe-eval'; object-src 'self'", "commands": { "_execute_page_action": { "suggested_key": { "default": "Alt+P", "windows": "Alt+P", "mac": "Alt+P" } } } } |