OpenSSL Decryptor
Decrypts `openssl aes-256-cbc -pbdkf2 -iter -a` encrypted files on github.com and caches passwords in memory
Wat is OpenSSL Decryptor?
OpenSSL Decryptor is een Chrome-extensie ontwikkeld door devova, en de belangrijkste functie is "Decrypts `openssl aes-256-cbc -pbdkf2 -iter -a` encrypted files on github.com and caches passwords in memory".
Extensie Screenshots
Download het CRX-bestand van de extensie OpenSSL Decryptor
Download OpenSSL Decryptor-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
Decrypts `openssl aes-256-cbc -pbdkf2 -iter 1000 -a` encrypted files on github.com and caches passwords in memory
Basisinformatie over de Extensie
Naam | OpenSSL Decryptor |
ID | oeoamhmbncnknggfocbmkipjnflhjgdn |
Officiële URL | https://chromewebstore.google.com/detail/openssl-decryptor/oeoamhmbncnknggfocbmkipjnflhjgdn |
Beschrijving | Decrypts `openssl aes-256-cbc -pbdkf2 -iter -a` encrypted files on github.com and caches passwords in memory |
Bestandsgrootte | 181 KB |
Aantal Installaties | 72 |
Huidige Versie | 1.0.1 |
Laatst Bijgewerkt | 2019-08-16 |
Publicatiedatum | 2019-08-16 |
Ontwikkelaar | devova |
[email protected] | |
Betalingswijze | free |
Ondersteunde Talen | 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\/*" ] } |