Eat Your Food, Kids!

Automatically pauses and resumes YouTube and Netflix videos.

Cos'è Eat Your Food, Kids!?

Eat Your Food, Kids! è un'estensione di Chrome sviluppata da Tarik Guney, e la sua funzione principale è "Automatically pauses and resumes YouTube and Netflix videos.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Eat Your Food, Kids!

Scarica i file di estensione Eat Your Food, Kids! in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Eat Your Food, Kids! Eat Your Food, Kids!
ID heolmfpchcfgiafbkbpkgjiejbnboljd
URL Ufficiale https://chromewebstore.google.com/detail/eat-your-food-kids/heolmfpchcfgiafbkbpkgjiejbnboljd
Descrizione Automatically pauses and resumes YouTube and Netflix videos.
Dimensione del File 1.45 MB
Conteggio Installazioni 10
Versione Corrente 1.5
Ultimo Aggiornamento 2022-03-03
Data di Pubblicazione 2022-03-01
Valutazione 5.00/5 Totale 4 Valutazioni
Sviluppatore Tarik Guney
Email [email protected]
Tipo di Pagamento in_app
Lingue Supportate 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"
    ]
}