Eat Your Food, Kids!
Automatically pauses and resumes YouTube and Netflix videos.
Eat Your Food, Kids!란 무엇입니까?
Eat Your Food, Kids!은(는) Tarik Guney에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Automatically pauses and resumes YouTube and Netflix videos."입니다.
확장 프로그램 스크린샷
Eat Your Food, Kids! 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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.
확장 프로그램 기본 정보
이름 | Eat Your Food, Kids! |
ID | heolmfpchcfgiafbkbpkgjiejbnboljd |
공식 URL | https://chromewebstore.google.com/detail/eat-your-food-kids/heolmfpchcfgiafbkbpkgjiejbnboljd |
설명 | Automatically pauses and resumes YouTube and Netflix videos. |
파일 크기 | 1.45 MB |
설치 횟수 | 10 |
현재 버전 | 1.5 |
최근 업데이트 | 2022-03-03 |
출시 날짜 | 2022-03-01 |
평점 | 5.00/5 총 4 개의 평점 |
개발자 | Tarik Guney |
이메일 | [email protected] |
결제 유형 | in_app |
지원되는 언어 | 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" ] } |