Base 64 Decode

Add a right-click option to base64 decode text

Base 64 Decode là gì?

Base 64 Decode là một tiện ích mở rộng Chrome được phát triển bởi dylf, và tính năng chính của nó là "Add a right-click option to base64 decode text".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Base 64 Decode

Tải xuống các tệp mở rộng Base 64 Decode dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Base 64 Decode Base 64 Decode
ID cjjhhjjoenldlkfbdinpigfcpkhijhco
URL Chính Thức https://chromewebstore.google.com/detail/base-64-decode/cjjhhjjoenldlkfbdinpigfcpkhijhco
Mô tả Add a right-click option to base64 decode text
Kích Thước Tệp 8.48 KB
Số Lần Cài Đặt 196
Phiên Bản Hiện Tại 1.0.0
Cập Nhật Lần Cuối 2023-08-06
Ngày Phát Hành 2022-11-13
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển dylf
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/dylf/base64-decode-extension
URL Trang Trợ Giúp https://github.com/dylf/base64-decode-extension/issues
Ngôn Ngữ Được Hỗ Trợ 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
}