Base 64 Decode

Add a right-click option to base64 decode text

什麼是Base 64 Decode?

Base 64 Decode是由dylf開發的Chrome擴展程式,該擴展的主要功能是“Add a right-click option to base64 decode text”。

擴展截圖

screenshot

下載Base 64 Decode擴展crx文件

下載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
官方網址 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
}