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