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
官方網址 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"
    }
}