Eat Your Food, Kids!

Automatically pauses and resumes YouTube and Netflix videos.

ما هو Eat Your Food, Kids!؟

Eat Your Food, Kids! هو إضافة Chrome تم تطويرها بواسطة Tarik Guney، والميزة الرئيسية لها هي "Automatically pauses and resumes YouTube and Netflix videos.".

لقطات شاشة التمديد

screenshot
screenshot

تحميل ملف CRX للإضافة Eat Your Food, Kids!

قم بتنزيل ملفات الامتداد Eat Your Food, Kids! بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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"
    ]
}