Eat Your Food, Kids!

Automatically pauses and resumes YouTube and Netflix videos.

Eat Your Food, Kids!とは何ですか?

Eat Your Food, Kids!はTarik Guneyによって開発されたChromeの拡張機能で、その主な機能は「Automatically pauses and resumes YouTube and Netflix videos.」です。

拡張機能のスクリーンショット

screenshot
screenshot

Eat Your Food, Kids!拡張機能のCRXファイルをダウンロード

Eat Your Food, Kids!拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        You are watching videos on YouTube or Netflix and wanting to automatically pause to the video from time to time to eat some snacks or take a break. Whatever your reasons are, Eat Your Food, Kids! is here to help.                    

拡張機能の基本情報

名前 Eat Your Food, Kids! Eat Your Food, Kids!
ID heolmfpchcfgiafbkbpkgjiejbnboljd
公式URL https://chromewebstore.google.com/detail/eat-your-food-kids/heolmfpchcfgiafbkbpkgjiejbnboljd
説明 Automatically pauses and resumes YouTube and Netflix videos.
ファイルサイズ 1.45 MB
インストール数 10
現在のバージョン 1.5
最終更新日 2022-03-03
公開日 2022-03-01
評価 5.00/5 合計 4 レビュー
開発者 Tarik Guney
Eメール [email protected]
支払い方法 in_app
対応言語 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Eat Your Food, Kids!",
    "description": "Automatically pauses and resumes YouTube and Netflix videos.",
    "version": "1.5",
    "manifest_version": 3,
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.netflix.com\/*",
                "https:\/\/www.youtube.com\/*"
            ],
            "run_at": "document_idle",
            "js": [
                "content-script.js"
            ],
            "css": [
                "content-script.css"
            ]
        }
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "\/assets\/icons\/16.png",
            "32": "\/assets\/icons\/32.png",
            "48": "\/assets\/icons\/48.png",
            "128": "\/assets\/icons\/128.png"
        }
    },
    "background": {
        "service_worker": "background.js"
    },
    "icons": {
        "16": "\/assets\/icons\/16.png",
        "32": "\/assets\/icons\/32.png",
        "128": "\/assets\/icons\/128.png",
        "48": "\/assets\/icons\/48.png"
    },
    "permissions": [
        "storage",
        "activeTab"
    ]
}