OpenSSL Decryptor

Decrypts `openssl aes-256-cbc -pbdkf2 -iter -a` encrypted files on github.com and caches passwords in memory

Co je OpenSSL Decryptor?

OpenSSL Decryptor je rozšíření Chrome vyvinuté devova, a jeho hlavní funkcí je „Decrypts `openssl aes-256-cbc -pbdkf2 -iter -a` encrypted files on github.com and caches passwords in memory“.

Snímky obrazovky rozšíření

Stáhnout soubor CRX rozšíření OpenSSL Decryptor

Stáhněte si soubory rozšíření OpenSSL Decryptor ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        Decrypts `openssl aes-256-cbc -pbdkf2 -iter 1000 -a` encrypted files on github.com and caches passwords in memory                    

Základní Informace o Rozšíření

Název OpenSSL Decryptor OpenSSL Decryptor
ID oeoamhmbncnknggfocbmkipjnflhjgdn
Oficiální URL https://chromewebstore.google.com/detail/openssl-decryptor/oeoamhmbncnknggfocbmkipjnflhjgdn
Popis Decrypts `openssl aes-256-cbc -pbdkf2 -iter -a` encrypted files on github.com and caches passwords in memory
Velikost souboru 181 KB
Počet instalací 72
Aktuální Verze 1.0.1
Poslední Aktualizace 2019-08-16
Datum Vydání 2019-08-16
Vývojář devova
E-mail [email protected]
Typ Platby free
Podporované Jazyky en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "OpenSSL Decryptor",
    "version": "1.0.1",
    "description": "Decrypts `openssl aes-256-cbc -pbdkf2 -iter -a` encrypted files on github.com and caches passwords in memory",
    "author": "Gareth Watts",
    "homepage_url": "https:\/\/github.com\/Tictrac\/tt-infra-terraform",
    "icons": {
        "128": "icons\/chest128.png",
        "16": "icons\/chest16.png",
        "48": "icons\/chest48.png"
    },
    "background": {
        "persistent": true,
        "scripts": [
            "extern\/sjcl\/sjcl.js",
            "extern\/sjcl\/cbc.js",
            "extern\/sjcl\/bitArray.js",
            "extern\/jsencrypt.min.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\/*"
    ]
}