Base64 encode/decode selected text

A base64 encoder/decoder extensions for the chrome

Base64 encode/decode selected text क्या है?

Base64 encode/decode selected text Jase द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A base64 encoder/decoder extensions for the chrome"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Base64 encode/decode selected text एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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"
    }
}