Eat Your Food, Kids!

Automatically pauses and resumes YouTube and Netflix videos.

Wat is Eat Your Food, Kids!?

Eat Your Food, Kids! is een Chrome-extensie ontwikkeld door Tarik Guney, en de belangrijkste functie is "Automatically pauses and resumes YouTube and Netflix videos.".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie Eat Your Food, Kids!

Download Eat Your Food, Kids!-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Eat Your Food, Kids! Eat Your Food, Kids!
ID heolmfpchcfgiafbkbpkgjiejbnboljd
Officiële URL https://chromewebstore.google.com/detail/eat-your-food-kids/heolmfpchcfgiafbkbpkgjiejbnboljd
Beschrijving Automatically pauses and resumes YouTube and Netflix videos.
Bestandsgrootte 1.45 MB
Aantal Installaties 10
Huidige Versie 1.5
Laatst Bijgewerkt 2022-03-03
Publicatiedatum 2022-03-01
Beoordeling 5.00/5 Totaal 4 Beoordelingen
Ontwikkelaar Tarik Guney
E-mail [email protected]
Betalingswijze in_app
Ondersteunde Talen 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"
    ]
}