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 |
官方網址 | 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\/*" ] } |