Baby Mode

Happy Baby, Happy Browsing

Baby Mode란 무엇입니까?

Baby Mode은(는) helpfulwebtech에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Happy Baby, Happy Browsing"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Baby Mode 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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
        }
    ]
}