Baby Mode

Happy Baby, Happy Browsing

Cos'è Baby Mode?

Baby Mode è un'estensione di Chrome sviluppata da helpfulwebtech, e la sua funzione principale è "Happy Baby, Happy Browsing".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Baby Mode

Scarica i file di estensione Baby Mode in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome Baby Mode Baby Mode
ID efkbgchndofhepjnknffgiegmjihkepc
URL Ufficiale https://chromewebstore.google.com/detail/baby-mode/efkbgchndofhepjnknffgiegmjihkepc
Descrizione Happy Baby, Happy Browsing
Dimensione del File 704 KB
Conteggio Installazioni 1,490
Versione Corrente 2.2
Ultimo Aggiornamento 2023-01-05
Data di Pubblicazione 2020-05-22
Valutazione 3.80/5 Totale 10 Valutazioni
Sviluppatore helpfulwebtech
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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
        }
    ]
}