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 مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Decrypts `openssl aes-256-cbc -pbdkf2 -iter 1000 -a` encrypted files on github.com and caches passwords in memory معلومات أساسية عن التمديد
| الاسم | |
| 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\/*"
]
} | |