Base64 Decoder

Decodes Base64 strings. Highlight the string and right-click.

Base64 Decoder란 무엇입니까?

Base64 Decoder은(는) dragoonj에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Decodes Base64 strings. Highlight the string and right-click."입니다.

Base64 Decoder 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This is a tiny extension that does just one thing: Decodes Base64 strings. 

To use, simply highlight the string you wish to decode, right-click it, and select 'Base64 Decode'.

Note: depending on the structure of the page, decoding the string may cause some funny formatting issues. Refresh the page to restore structure/formatting.                    

확장 프로그램 기본 정보

이름 Base64 Decoder Base64 Decoder
ID ababhhiegjhaohnipcgjfgfeljakfhhc
공식 URL https://chromewebstore.google.com/detail/base64-decoder/ababhhiegjhaohnipcgjfgfeljakfhhc
설명 Decodes Base64 strings. Highlight the string and right-click.
파일 크기 14.15 KB
설치 횟수 2,413
현재 버전 0.2
최근 업데이트 2013-03-13
출시 날짜 2013-03-13
평점 4.08/5 총 12 개의 평점
개발자 dragoonj
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Base64 Decoder",
    "description": "Decodes Base64 strings. Highlight the string and right-click.",
    "version": "0.2",
    "permissions": [
        "contextMenus"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "run_at": "document_end",
            "js": [
                "zepto.js",
                "content.js"
            ]
        }
    ],
    "manifest_version": 2
}