Baby Mode

Happy Baby, Happy Browsing

Wat is Baby Mode?

Baby Mode is een Chrome-extensie ontwikkeld door helpfulwebtech, en de belangrijkste functie is "Happy Baby, Happy Browsing".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie Baby Mode

Download Baby Mode-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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                    

Basisinformatie over de Extensie

Naam Baby Mode Baby Mode
ID efkbgchndofhepjnknffgiegmjihkepc
Officiële URL https://chromewebstore.google.com/detail/baby-mode/efkbgchndofhepjnknffgiegmjihkepc
Beschrijving Happy Baby, Happy Browsing
Bestandsgrootte 704 KB
Aantal Installaties 1,490
Huidige Versie 2.2
Laatst Bijgewerkt 2023-01-05
Publicatiedatum 2020-05-22
Beoordeling 3.80/5 Totaal 10 Beoordelingen
Ontwikkelaar helpfulwebtech
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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
        }
    ]
}