Ansible Vault Decryptor

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

Ansible Vault Decryptor là gì?

Ansible Vault Decryptor là một tiện ích mở rộng Chrome được phát triển bởi Unknown, và tính năng chính của nó là "Decrypts Ansible vaults on github.com and caches passwords in memory".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Ansible Vault Decryptor

Tải xuống các tệp mở rộng Ansible Vault Decryptor dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Ansible Vault Decryptor Ansible Vault Decryptor
ID mjebkhaiooleeenllmhgnijapnmbcpfl
URL Chính Thức https://chromewebstore.google.com/detail/ansible-vault-decryptor/mjebkhaiooleeenllmhgnijapnmbcpfl
Mô tả Decrypts Ansible vaults on github.com and caches passwords in memory
Kích Thước Tệp 160 KB
Số Lần Cài Đặt 381
Phiên Bản Hiện Tại 1.1.2
Cập Nhật Lần Cuối 2017-05-22
Ngày Phát Hành 2017-05-22
Nhà Phát Triển Unknown
Loại Thanh Toán free
Trang Web Mở Rộng http://gwatts.com/chrome-ansible
Ngôn Ngữ Được Hỗ Trợ 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\/*"
    ]
}