Ansible Vault Decryptor
Decrypts Ansible vaults on github.com and caches passwords in memory
Was ist Ansible Vault Decryptor?
Ansible Vault Decryptor ist eine Chrome-Erweiterung, die von Unknown entwickelt wurde, und ihr Hauptmerkmal ist "Decrypts Ansible vaults on github.com and caches passwords in memory".
Erweiterungsscreenshots
Ansible Vault Decryptor-Erweiterungs-CRX-Datei herunterladen
Laden Sie Ansible Vault Decryptor-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
This extension adds a "Decrypt" button to files on github.com that display an Ansible encrypted vault. The decryption happens in-browser (nothing is transmitted), and the password used to decrypt is cached only in-memory. Ansible (http://www.ansible.com/) is a popular configuration management tool. The full source code for this extension is available at https://github.com/gwatts/chrome-ansible
Grundlegende Informationen zur Erweiterung
Name | Ansible Vault Decryptor |
ID | mjebkhaiooleeenllmhgnijapnmbcpfl |
Offizielle URL | https://chromewebstore.google.com/detail/ansible-vault-decryptor/mjebkhaiooleeenllmhgnijapnmbcpfl |
Beschreibung | Decrypts Ansible vaults on github.com and caches passwords in memory |
Dateigröße | 160 KB |
Installationsanzahl | 381 |
Aktuelle Version | 1.1.2 |
Letztes Update | 2017-05-22 |
Veröffentlichungsdatum | 2017-05-22 |
Entwickler | Unknown |
Zahlungsart | free |
Erweiterungswebsite | http://gwatts.com/chrome-ansible |
Unterstützte Sprachen | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Ansible Vault Decryptor", "version": "1.1.2", "description": "Decrypts Ansible vaults on github.com and caches passwords in memory", "author": "Gareth Watts", "homepage_url": "https:\/\/gwatts.com\/chrome-ansible", "icons": { "128": "icons\/chest128.png", "16": "icons\/chest16.png", "48": "icons\/chest48.png" }, "background": { "persistent": true, "scripts": [ "extern\/sjcl\/sjcl.js", "background.js" ] }, "content_scripts": [ { "css": [ "extern\/jquery-ui.custom\/jquery-ui.min.css" ], "js": [ "extern\/jquery-2.1.3.min.js", "extern\/jquery-ui.custom\/jquery-ui.min.js", "extern\/diff\/diff-3.2.0.min.js", "common.js", "github.js" ], "matches": [ "https:\/\/www.github.com\/*", "https:\/\/github.com\/*" ] } ], "options_page": "options.html", "options_ui": { "chrome_style": true, "page": "options.html" }, "permissions": [ "storage", "https:\/\/www.github.com\/*", "https:\/\/github.com\/*" ] } |