🅱️

Replace the letter B with the 🅱️ emoji everywhere.

🅱️ क्या है?

🅱️ Daniel Ting द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Replace the letter B with the 🅱️ emoji everywhere."।

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

screenshot
screenshot
screenshot

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

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

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

                        A pretty useless extension, to be honest. Side effects may include making long-form information slightly more interesting as well as completely unreadable, turning toxic comments humorous, and mild to severe 🅱️.

- Can be disabled for one domain by clicking on the extension icon (to enable it only on whitelisted sites, go to chrome://extensions and change the "Site access" option to "On specific sites" on the extension's details page)
- Copying 🅱️-ified text to clipboard will preserve the original text
- Works on content fetched dynamically after initial page load
- Lightning fast even on the heaviest of pages
- Free/libre and open source: zero tracking, telemetry, or phoning home                    

एक्सटेंशन की मूल जानकारी

नाम 🅱️ 🅱️
ID mkndebmieplndmfbaiekpfcinpbbjngj
आधिकारिक URL https://chromewebstore.google.com/detail/%F0%9F%85%B1%EF%B8%8F/mkndebmieplndmfbaiekpfcinpbbjngj
विवरण Replace the letter B with the 🅱️ emoji everywhere.
फ़ाइल का आकार 911 KB
स्थापना संख्या 28
वर्तमान संस्करण 2.0
अंतिम अपडेट 2021-04-22
प्रकाशन तिथि 2021-04-11
रेटिंग 5.00/5 कुल 4 रेटिंग्स
डेवलपर Daniel Ting
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/DanielZTing/b
सहायता पृष्ठ URL https://github.com/DanielZTing/b/issues
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "\ud83c\udd71\ufe0f",
    "description": "Replace the letter B with the \ud83c\udd71\ufe0f emoji everywhere.",
    "version": "2.0",
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js"
    },
    "action": [],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "mutation-summary.js",
                "main.js"
            ],
            "run_at": "document_start"
        }
    ],
    "permissions": [
        "storage",
        "tabs"
    ],
    "icons": {
        "128": ".\/assets\/b.png"
    }
}