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
官方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
}