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によって開発されたChromeの拡張機能で、その主な機能は「Decrypts `openssl aes-256-cbc -pbdkf2 -iter -a` encrypted files on github.com and caches passwords in memory」です。
拡張機能のスクリーンショット
OpenSSL Decryptor拡張機能のCRXファイルをダウンロード
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 |
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 |
Eメール | [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\/*" ] } |