Base64 encode/decode selected text

A base64 encoder/decoder extensions for the chrome

Base64 encode/decode selected textとは何ですか?

Base64 encode/decode selected textはJaseによって開発されたChromeの拡張機能で、その主な機能は「A base64 encoder/decoder extensions for the chrome」です。

拡張機能のスクリーンショット

screenshot

Base64 encode/decode selected text拡張機能のCRXファイルをダウンロード

Base64 encode/decode selected text拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        A base64 encoder/decoder extensions for the chrome

This is an open source software.
https://github.com/17/chrome_base64                    

拡張機能の基本情報

名前 Base64 encode/decode selected text Base64 encode/decode selected text
ID gkdcpimagggbnjdkjhbnilfeiidhdhcl
公式URL https://chromewebstore.google.com/detail/base64-encodedecode-selec/gkdcpimagggbnjdkjhbnilfeiidhdhcl
説明 A base64 encoder/decoder extensions for the chrome
ファイルサイズ 10.14 KB
インストール数 11,600
現在のバージョン 0.2.1
最終更新日 2019-01-28
公開日 2019-01-25
評価 2.88/5 合計 8 レビュー
開発者 Jase
支払い方法 free
対応言語 en,zh-CN,zh-TW
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Base64 encode\/decode selected text",
    "version": "0.2.1",
    "description": "A base64 encoder\/decoder extensions for the chrome",
    "default_locale": "en",
    "permissions": [
        "contextMenus",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "background": {
        "scripts": [
            ".\/background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                ".\/content_scripts.js"
            ]
        }
    ],
    "icons": {
        "16": ".\/icons\/16.png",
        "48": ".\/icons\/48.png",
        "128": ".\/icons\/128.png"
    }
}