OpenSSL Decryptor
Decrypts `openssl aes-256-cbc -pbdkf2 -iter -a` encrypted files on github.com and caches passwords in memory
Cos'è OpenSSL Decryptor?
OpenSSL Decryptor è un'estensione di Chrome sviluppata da devova, e la sua funzione principale è "Decrypts `openssl aes-256-cbc -pbdkf2 -iter -a` encrypted files on github.com and caches passwords in memory".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione OpenSSL Decryptor
Scarica i file di estensione OpenSSL Decryptor in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
Decrypts `openssl aes-256-cbc -pbdkf2 -iter 1000 -a` encrypted files on github.com and caches passwords in memory Informazioni di Base sull'Estensione
| Nome | |
| ID | oeoamhmbncnknggfocbmkipjnflhjgdn |
| URL Ufficiale | https://chromewebstore.google.com/detail/openssl-decryptor/oeoamhmbncnknggfocbmkipjnflhjgdn |
| Descrizione | Decrypts `openssl aes-256-cbc -pbdkf2 -iter -a` encrypted files on github.com and caches passwords in memory |
| Dimensione del File | 181 KB |
| Conteggio Installazioni | 72 |
| Versione Corrente | 1.0.1 |
| Ultimo Aggiornamento | 2019-08-16 |
| Data di Pubblicazione | 2019-08-16 |
| Sviluppatore | devova |
| [email protected] | |
| Tipo di Pagamento | free |
| Lingue Supportate | 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\/*"
]
} | |