Base 64 Decode

Add a right-click option to base64 decode text

ما هو Base 64 Decode؟

Base 64 Decode هو إضافة Chrome تم تطويرها بواسطة dylf، والميزة الرئيسية لها هي "Add a right-click option to base64 decode text".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Base 64 Decode

قم بتنزيل ملفات الامتداد Base 64 Decode بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        Have you ever needed to use base 64 decode on text in a web page? How about visiting a URL that is base 64 encoded?

This extension adds menu items for your right-click context menu when you select text that is base64 encoded on a page.                    

معلومات أساسية عن التمديد

الاسم Base 64 Decode Base 64 Decode
ID cjjhhjjoenldlkfbdinpigfcpkhijhco
عنوان URL الرسمي https://chromewebstore.google.com/detail/base-64-decode/cjjhhjjoenldlkfbdinpigfcpkhijhco
الوصف Add a right-click option to base64 decode text
حجم الملف 8.48 KB
عدد التثبيتات 196
النسخة الحالية 1.0.0
آخر تحديث 2023-08-06
تاريخ النشر 2022-11-13
تقييم 5.00/5 مجموع تقييمات 1
المطور dylf
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/dylf/base64-decode-extension
عنوان صفحة المساعدة https://github.com/dylf/base64-decode-extension/issues
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "$schema": "https:\/\/json.schemastore.org\/chrome-manifest",
    "name": "Base 64 Decode",
    "version": "1.0.0",
    "description": "Add a right-click option to base64 decode text",
    "permissions": [
        "activeTab",
        "contextMenus"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js",
        "module": true
    },
    "icons": {
        "16": "assets\/icon_16.png",
        "32": "assets\/icon_32.png",
        "48": "assets\/icon_48.png",
        "128": "assets\/icon_128.png"
    },
    "manifest_version": 3
}