🅱️

Replace the letter B with the 🅱️ emoji everywhere.

ما هو 🅱️؟

🅱️ هو إضافة Chrome تم تطويرها بواسطة Daniel Ting، والميزة الرئيسية لها هي "Replace the letter B with the 🅱️ emoji everywhere.".

لقطات شاشة التمديد

screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة 🅱️

قم بتنزيل ملفات الامتداد 🅱️ بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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
عنوان صفحة المساعدة 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"
    }
}