Base64 Decoder
Decodes Base64 strings. Highlight the string and right-click.
ما هو Base64 Decoder؟
Base64 Decoder هو إضافة Chrome تم تطويرها بواسطة dragoonj، والميزة الرئيسية لها هي "Decodes Base64 strings. Highlight the string and right-click.".
تحميل ملف CRX للإضافة Base64 Decoder
قم بتنزيل ملفات الامتداد Base64 Decoder بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
This is a tiny extension that does just one thing: Decodes Base64 strings.
To use, simply highlight the string you wish to decode, right-click it, and select 'Base64 Decode'.
Note: depending on the structure of the page, decoding the string may cause some funny formatting issues. Refresh the page to restore structure/formatting. معلومات أساسية عن التمديد
| الاسم | |
| ID | ababhhiegjhaohnipcgjfgfeljakfhhc |
| عنوان URL الرسمي | https://chromewebstore.google.com/detail/base64-decoder/ababhhiegjhaohnipcgjfgfeljakfhhc |
| الوصف | Decodes Base64 strings. Highlight the string and right-click. |
| حجم الملف | 14.15 KB |
| عدد التثبيتات | 2,413 |
| النسخة الحالية | 0.2 |
| آخر تحديث | 2013-03-13 |
| تاريخ النشر | 2013-03-13 |
| تقييم | 4.08/5 مجموع تقييمات 12 |
| المطور | dragoonj |
| البريد الإلكتروني | [email protected] |
| نوع الدفع | free |
| اللغات المدعومة | en |
| manifest.json | |
{
"update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Base64 Decoder",
"description": "Decodes Base64 strings. Highlight the string and right-click.",
"version": "0.2",
"permissions": [
"contextMenus"
],
"background": {
"scripts": [
"background.js"
]
},
"content_scripts": [
{
"matches": [
"*:\/\/*\/*"
],
"run_at": "document_end",
"js": [
"zepto.js",
"content.js"
]
}
],
"manifest_version": 2
} | |