Eat Your Food, Kids!

Automatically pauses and resumes YouTube and Netflix videos.

Apa itu Eat Your Food, Kids!?

Eat Your Food, Kids! adalah ekstensi Chrome yang dikembangkan oleh Tarik Guney, dan fitur utamanya adalah "Automatically pauses and resumes YouTube and Netflix videos.".

Screenshot Ekstensi

screenshot
screenshot

Unduh Berkas CRX Ekstensi Eat Your Food, Kids!

Unduh file ekstensi Eat Your Food, Kids! dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Eat Your Food, Kids! Eat Your Food, Kids!
ID heolmfpchcfgiafbkbpkgjiejbnboljd
URL Resmi https://chromewebstore.google.com/detail/eat-your-food-kids/heolmfpchcfgiafbkbpkgjiejbnboljd
Deskripsi Automatically pauses and resumes YouTube and Netflix videos.
Ukuran File 1.45 MB
Jumlah Instalasi 10
Versi Saat Ini 1.5
Terakhir Diperbarui 2022-03-03
Tanggal Publikasi 2022-03-01
Penilaian 5.00/5 Total 4 Penilaian
Pengembang Tarik Guney
Email [email protected]
Tipe Pembayaran in_app
Bahasa yang Didukung 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"
    ]
}