OpenSSL Decryptor

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

OpenSSL Decryptor क्या है?

OpenSSL Decryptor devova द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Decrypts `openssl aes-256-cbc -pbdkf2 -iter -a` encrypted files on github.com and caches passwords in memory"।

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

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

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

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

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

एक्सटेंशन की मूल जानकारी

नाम OpenSSL Decryptor OpenSSL Decryptor
ID oeoamhmbncnknggfocbmkipjnflhjgdn
आधिकारिक URL https://chromewebstore.google.com/detail/openssl-decryptor/oeoamhmbncnknggfocbmkipjnflhjgdn
विवरण Decrypts `openssl aes-256-cbc -pbdkf2 -iter -a` encrypted files on github.com and caches passwords in memory
फ़ाइल का आकार 181 KB
स्थापना संख्या 72
वर्तमान संस्करण 1.0.1
अंतिम अपडेट 2019-08-16
प्रकाशन तिथि 2019-08-16
डेवलपर devova
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ 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\/*"
    ]
}