Ansible Vault Decryptor

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

Ansible Vault Decryptor क्या है?

Ansible Vault Decryptor Unknown द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Decrypts Ansible vaults on github.com and caches passwords in memory"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Ansible Vault Decryptor एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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\/*"
    ]
}