Baby Mode

Happy Baby, Happy Browsing

What is Baby Mode?

Baby Mode is a Chrome extension developed by helpfulwebtech, and its main feature is "Happy Baby, Happy Browsing".

Extension Screenshots

screenshot
screenshot

Download Baby Mode Extension CRX File

Download Baby Mode extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name Baby Mode Baby Mode
ID efkbgchndofhepjnknffgiegmjihkepc
Official URL https://chromewebstore.google.com/detail/baby-mode/efkbgchndofhepjnknffgiegmjihkepc
Description Happy Baby, Happy Browsing
File Size 704 KB
Installation Count 1,490
Current Version 2.2
Last Updated 2023-01-05
Publish Date 2020-05-22
Rating 3.80/5 Total 10 Ratings
Developer helpfulwebtech
Email [email protected]
Payment Type free
Supported Languages 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
        }
    ]
}