🅱️

Replace the letter B with the 🅱️ emoji everywhere.

Co je 🅱️?

🅱️ je rozšíření Chrome vyvinuté Daniel Ting, a jeho hlavní funkcí je „Replace the letter B with the 🅱️ emoji everywhere.“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření 🅱️

Stáhněte si soubory rozšíření 🅱️ ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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                    

Základní Informace o Rozšíření

Název 🅱️ 🅱️
ID mkndebmieplndmfbaiekpfcinpbbjngj
Oficiální URL https://chromewebstore.google.com/detail/%F0%9F%85%B1%EF%B8%8F/mkndebmieplndmfbaiekpfcinpbbjngj
Popis Replace the letter B with the 🅱️ emoji everywhere.
Velikost souboru 911 KB
Počet instalací 28
Aktuální Verze 2.0
Poslední Aktualizace 2021-04-22
Datum Vydání 2021-04-11
Hodnocení 5.00/5 Celkem 4 Hodnocení
Vývojář Daniel Ting
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/DanielZTing/b
URL Stránky Nápovědy https://github.com/DanielZTing/b/issues
Podporované Jazyky 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"
    }
}