Eat Your Food, Kids!
Automatically pauses and resumes YouTube and Netflix videos.
Hvad er Eat Your Food, Kids!?
Eat Your Food, Kids! er en Chrome-udvidelse udviklet af Tarik Guney, og dens hovedfunktion er "Automatically pauses and resumes YouTube and Netflix videos.".
Udvidelsesskærmbilleder
Download Eat Your Food, Kids!-udvidelses-CRX-fil
Download Eat Your Food, Kids!-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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.
Grundlæggende oplysninger om udvidelsen
Navn | Eat Your Food, Kids! |
ID | heolmfpchcfgiafbkbpkgjiejbnboljd |
Officiel URL | https://chromewebstore.google.com/detail/eat-your-food-kids/heolmfpchcfgiafbkbpkgjiejbnboljd |
Beskrivelse | Automatically pauses and resumes YouTube and Netflix videos. |
Filstørrelse | 1.45 MB |
Antal Installationer | 10 |
Nuværende Version | 1.5 |
Senest Opdateret | 2022-03-03 |
Udgivelsesdato | 2022-03-01 |
Bedømmelse | 5.00/5 Samlet 4 Bedømmelser |
Udvikler | Tarik Guney |
[email protected] | |
Betalingsmetode | in_app |
Understøttede Sprog | 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" ] } |