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
电子邮箱 [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"
    ]
}