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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
}