Ansible Vault Decryptor

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

Ansible Vault Decryptorとは何ですか?

Ansible Vault DecryptorはUnknownによって開発されたChromeの拡張機能で、その主な機能は「Decrypts Ansible vaults on github.com and caches passwords in memory」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot

Ansible Vault Decryptor拡張機能のCRXファイルをダウンロード

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