OpenSSL Decryptor
Decrypts `openssl aes-256-cbc -pbdkf2 -iter -a` encrypted files on github.com and caches passwords in memory
Что такое OpenSSL Decryptor?
OpenSSL Decryptor - это расширение Chrome, разработанное devova, и его основная функция - "Decrypts `openssl aes-256-cbc -pbdkf2 -iter -a` encrypted files on github.com and caches passwords in memory".
Снимки экрана расширения
Скачать файл CRX расширения OpenSSL Decryptor
Скачайте файлы расширений 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 |
Электронная почта | [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\/*" ] } |