Baby Mode

Happy Baby, Happy Browsing

ما هو Baby Mode؟

Baby Mode هو إضافة Chrome تم تطويرها بواسطة helpfulwebtech، والميزة الرئيسية لها هي "Happy Baby, Happy Browsing".

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

screenshot
screenshot

تحميل ملف CRX للإضافة Baby Mode

قم بتنزيل ملفات الامتداد Baby Mode بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        Baby Mode makes your browser baby friendly by allowing you to work and your baby to stay engaged. 

Baby Mode works by disabling your keyboard (but not your mouse) and adding sounds; letter pronunciation, animal, drum set, etc, to help your baby learn. You will be able to relax and get work done as your baby types on your keyboard.

Baby Mode can also work with cats or any other unwanted distractions you want away from your keyboard                    

معلومات أساسية عن التمديد

الاسم Baby Mode Baby Mode
ID efkbgchndofhepjnknffgiegmjihkepc
عنوان URL الرسمي https://chromewebstore.google.com/detail/baby-mode/efkbgchndofhepjnknffgiegmjihkepc
الوصف Happy Baby, Happy Browsing
حجم الملف 704 KB
عدد التثبيتات 1,490
النسخة الحالية 2.2
آخر تحديث 2023-01-05
تاريخ النشر 2020-05-22
تقييم 3.80/5 مجموع تقييمات 10
المطور helpfulwebtech
البريد الإلكتروني [email protected]
نوع الدفع free
اللغات المدعومة en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "author": "Craig Walker",
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_icon": "48.png",
        "default_popup": "popup.html",
        "default_title": "Baby Mode"
    },
    "commands": {
        "toggle-baby-mode": {
            "description": "Toggle baby mode",
            "global": true,
            "suggested_key": {
                "mac": "Command+Shift+0",
                "windows": "Ctrl+Shift+0"
            }
        }
    },
    "content_scripts": [
        {
            "js": [
                "content.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "description": "Happy Baby, Happy Browsing",
    "icons": {
        "128": "128.png",
        "16": "16.png",
        "48": "48.png"
    },
    "manifest_version": 3,
    "name": "Baby Mode",
    "offline_enabled": true,
    "permissions": [
        "storage",
        "tabs",
        "activeTab"
    ],
    "version": "2.2",
    "web_accessible_resources": [
        {
            "resources": [
                "sounds\/*",
                "48.png"
            ],
            "matches": [
                ""
            ],
            "use_dynamic_url": true
        }
    ]
}