Eat Your Food, Kids!
Automatically pauses and resumes YouTube and Netflix videos.
What is Eat Your Food, Kids!?
Eat Your Food, Kids! is a Chrome extension developed by Tarik Guney, and its main feature is "Automatically pauses and resumes YouTube and Netflix videos.".
Extension Screenshots
Download Eat Your Food, Kids! Extension CRX File
Download Eat Your Food, Kids! extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | Eat Your Food, Kids! |
ID | heolmfpchcfgiafbkbpkgjiejbnboljd |
Official URL | https://chromewebstore.google.com/detail/eat-your-food-kids/heolmfpchcfgiafbkbpkgjiejbnboljd |
Description | Automatically pauses and resumes YouTube and Netflix videos. |
File Size | 1.45 MB |
Installation Count | 10 |
Current Version | 1.5 |
Last Updated | 2022-03-03 |
Publish Date | 2022-03-01 |
Rating | 5.00/5 Total 4 Ratings |
Developer | Tarik Guney |
[email protected] | |
Payment Type | in_app |
Supported Languages | 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" ] } |