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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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
URL หน้าช่วยเหลือ 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
}