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

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

                        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.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Base64 Decoder Base64 Decoder
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
}