Eat Your Food, Kids!

Automatically pauses and resumes YouTube and Netflix videos.

Was ist Eat Your Food, Kids!?

Eat Your Food, Kids! ist eine Chrome-Erweiterung, die von Tarik Guney entwickelt wurde, und ihr Hauptmerkmal ist "Automatically pauses and resumes YouTube and Netflix videos.".

Erweiterungsscreenshots

screenshot
screenshot

Eat Your Food, Kids!-Erweiterungs-CRX-Datei herunterladen

Laden Sie Eat Your Food, Kids!-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Eat Your Food, Kids! Eat Your Food, Kids!
ID heolmfpchcfgiafbkbpkgjiejbnboljd
Offizielle URL https://chromewebstore.google.com/detail/eat-your-food-kids/heolmfpchcfgiafbkbpkgjiejbnboljd
Beschreibung Automatically pauses and resumes YouTube and Netflix videos.
Dateigröße 1.45 MB
Installationsanzahl 10
Aktuelle Version 1.5
Letztes Update 2022-03-03
Veröffentlichungsdatum 2022-03-01
Bewertung 5.00/5 Insgesamt 4 Bewertungen
Entwickler Tarik Guney
E-Mail [email protected]
Zahlungsart in_app
Unterstützte Sprachen 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"
    ]
}