OpenSSL Decryptor
Decrypts `openssl aes-256-cbc -pbdkf2 -iter -a` encrypted files on github.com and caches passwords in memory
What is OpenSSL Decryptor?
OpenSSL Decryptor is a Chrome extension developed by devova, and its main feature is "Decrypts `openssl aes-256-cbc -pbdkf2 -iter -a` encrypted files on github.com and caches passwords in memory".
Extension Screenshots
Download OpenSSL Decryptor Extension CRX File
Download OpenSSL Decryptor extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Decrypts `openssl aes-256-cbc -pbdkf2 -iter 1000 -a` encrypted files on github.com and caches passwords in memory
Extension Basic Information
Name | OpenSSL Decryptor |
ID | oeoamhmbncnknggfocbmkipjnflhjgdn |
Official URL | https://chromewebstore.google.com/detail/openssl-decryptor/oeoamhmbncnknggfocbmkipjnflhjgdn |
Description | Decrypts `openssl aes-256-cbc -pbdkf2 -iter -a` encrypted files on github.com and caches passwords in memory |
File Size | 181 KB |
Installation Count | 72 |
Current Version | 1.0.1 |
Last Updated | 2019-08-16 |
Publish Date | 2019-08-16 |
Developer | devova |
[email protected] | |
Payment Type | free |
Supported Languages | 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\/*" ] } |