Eat Your Food, Kids!
Automatically pauses and resumes YouTube and Netflix videos.
Vad är Eat Your Food, Kids!?
Eat Your Food, Kids! är en Chrome-tillägg utvecklad av Tarik Guney, och dess huvudfunktion är "Automatically pauses and resumes YouTube and Netflix videos.".
Tilläggsskärmbilder
Ladda ner Eat Your Food, Kids!-förlängningens CRX-fil
Ladda ner Eat Your Food, Kids!-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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äggande Information om Tillägg
| Namn | |
| ID | heolmfpchcfgiafbkbpkgjiejbnboljd |
| Officiell webbadress | https://chromewebstore.google.com/detail/eat-your-food-kids/heolmfpchcfgiafbkbpkgjiejbnboljd |
| Beskrivning | Automatically pauses and resumes YouTube and Netflix videos. |
| Filstorlek | 1.45 MB |
| Antal Installationer | 10 |
| Aktuell Version | 1.5 |
| Senast Uppdaterad | 2022-03-03 |
| Publiceringsdatum | 2022-03-01 |
| Betyg | 5.00/5 Totalt 4 Betyg |
| Utvecklare | Tarik Guney |
| E-post | [email protected] |
| Betalningssätt | in_app |
| Stödda Språk | 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"
]
} | |