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