Ansible Vault Decryptor
Decrypts Ansible vaults on github.com and caches passwords in memory
Qu'est-ce que Ansible Vault Decryptor ?
Ansible Vault Decryptor est une extension Chrome développée par Unknown, et sa fonction principale est "Decrypts Ansible vaults on github.com and caches passwords in memory".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Ansible Vault Decryptor
Téléchargez les fichiers d'extension Ansible Vault Decryptor 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
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
Informations de Base sur l'Extension
Nom | Ansible Vault Decryptor |
ID | mjebkhaiooleeenllmhgnijapnmbcpfl |
URL Officiel | https://chromewebstore.google.com/detail/ansible-vault-decryptor/mjebkhaiooleeenllmhgnijapnmbcpfl |
Description | Decrypts Ansible vaults on github.com and caches passwords in memory |
Taille du Fichier | 160 KB |
Nombre d'Installations | 381 |
Version Actuelle | 1.1.2 |
Dernière Mise à Jour | 2017-05-22 |
Date de Publication | 2017-05-22 |
Développeur | Unknown |
Type de Paiement | free |
Site Web de l'Extension | http://gwatts.com/chrome-ansible |
Langues Prises en Charge | 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\/*" ] } |