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
官方網址 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"
    ]
}