Base 64 Decode

Add a right-click option to base64 decode text

What is Base 64 Decode?

Base 64 Decode is a Chrome extension developed by dylf, and its main feature is "Add a right-click option to base64 decode text".

Extension Screenshots

screenshot

Download Base 64 Decode Extension CRX File

Download Base 64 Decode extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Base 64 Decode Base 64 Decode
ID cjjhhjjoenldlkfbdinpigfcpkhijhco
Official URL https://chromewebstore.google.com/detail/base-64-decode/cjjhhjjoenldlkfbdinpigfcpkhijhco
Description Add a right-click option to base64 decode text
File Size 8.48 KB
Installation Count 196
Current Version 1.0.0
Last Updated 2023-08-06
Publish Date 2022-11-13
Rating 5.00/5 Total 1 Ratings
Developer dylf
Email [email protected]
Payment Type free
Extension Website https://github.com/dylf/base64-decode-extension
Help Page URL https://github.com/dylf/base64-decode-extension/issues
Supported Languages 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
}