Base 64 Decode

Add a right-click option to base64 decode text

Base 64 Decode क्या है?

Base 64 Decode dylf द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Add a right-click option to base64 decode text"।

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

screenshot

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

crx प्रारूप में Base 64 Decode एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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
}