Ansible Vault Decryptor

Decrypts Ansible vaults on github.com and caches passwords in memory

Τι είναι το Ansible Vault Decryptor;

Το Ansible Vault Decryptor είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Unknown, και η κύρια λειτουργία του είναι "Decrypts Ansible vaults on github.com and caches passwords in memory".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Ansible Vault Decryptor

Λήψη αρχείων επέκτασης Ansible Vault Decryptor σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Ansible Vault Decryptor Ansible Vault Decryptor
ID mjebkhaiooleeenllmhgnijapnmbcpfl
Επίσημο URL https://chromewebstore.google.com/detail/ansible-vault-decryptor/mjebkhaiooleeenllmhgnijapnmbcpfl
Περιγραφή Decrypts Ansible vaults on github.com and caches passwords in memory
Μέγεθος Αρχείου 160 KB
Αριθμός Εγκαταστάσεων 381
Τρέχουσα Έκδοση 1.1.2
Τελευταία Ενημέρωση 2017-05-22
Ημερομηνία Δημοσίευσης 2017-05-22
Προγραμματιστής Unknown
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης http://gwatts.com/chrome-ansible
Υποστηριζόμενες Γλώσσες 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\/*"
    ]
}