Chrome Passwords
With Chrome Passwords you just have to remember one password! Chrome Passwords does not store any sensitive information, such as…
Qu'est-ce que Chrome Passwords ?
Chrome Passwords est une extension Chrome développée par Christoph Roeder, et sa fonction principale est "With Chrome Passwords you just have to remember one password! Chrome Passwords does not store any sensitive information, such as…".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Chrome Passwords
Téléchargez les fichiers d'extension Chrome Passwords au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | |
ID | injddhenpdfbccendcpjghdclnadepnp |
URL Officiel | https://chrome.google.com/webstore/detail/chrome-passwords/injddhenpdfbccendcpjghdclnadepnp |
Description | With Chrome Passwords you just have to remember one password! Chrome Passwords does not store any sensitive information, such as… |
Taille du Fichier | 187 KB |
Nombre d'Installations | 213 |
Version Actuelle | 2.2 |
Dernière Mise à Jour | 2021-01-08 |
Date de Publication | 2016-02-05 |
Évaluation | 4.67/5 Total 3 Évaluations |
Développeur | Christoph Roeder |
[email protected] | |
Type de Paiement | free |
URL de la Page d'Aide | https://github.com/brightdroid/chrome-passwords |
Langues Prises en Charge | 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" } } } } |