OpenSSL Decryptor

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

Τι είναι το OpenSSL Decryptor;

Το OpenSSL Decryptor είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον devova, και η κύρια λειτουργία του είναι "Decrypts `openssl aes-256-cbc -pbdkf2 -iter -a` encrypted files on github.com and caches passwords in memory".

Στιγμιότυπα Επέκτασης

Λήψη αρχείου CRX της επέκτασης OpenSSL Decryptor

Λήψη αρχείων επέκτασης OpenSSL Decryptor σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

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