Browser Screen Time
Keep track of the amount of time you spend on the internet
Browser Screen Time란 무엇입니까?
Browser Screen Time은(는) aaaeka에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Keep track of the amount of time you spend on the internet"입니다.
확장 프로그램 스크린샷
Browser Screen Time 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Keep track of the amount of time spent on the internet with this simple extension. The information is displayed in a simple chart to make viewing time spent easy. You can see time spent in a single day or a specific interval of time. This add-on is meant to fix the problems with the "Mind the time" add-on. For example, watching videos will not stop the timer from running. Help develop browser screen time: https://github.com/aaaeka/browser-screen-time
확장 프로그램 기본 정보
이름 | Browser Screen Time |
ID | nlkcecddkejakmaipagbcemeohfomedn |
공식 URL | https://chromewebstore.google.com/detail/browser-screen-time/nlkcecddkejakmaipagbcemeohfomedn |
설명 | Keep track of the amount of time you spend on the internet |
파일 크기 | 757 KB |
설치 횟수 | 9,943 |
현재 버전 | 1.2.0 |
최근 업데이트 | 2023-09-15 |
출시 날짜 | 2021-12-15 |
평점 | 4.63/5 총 8 개의 평점 |
개발자 | aaaeka |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/aaaeka/browser-screen-time |
도움말 페이지 URL | https://github.com/aaaeka/browser-screen-time |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Browser Screen Time", "short_name": "Screen Time", "version": "1.2.0", "description": "Keep track of the amount of time you spend on the internet", "background": { "service_worker": "background.js" }, "action": { "default_title": "Screen Time", "default_popup": "popup.html", "default_icon": { "16": "assets\/icons\/16px.png", "32": "assets\/icons\/32px.png", "64": "assets\/icons\/64px.png", "128": "assets\/icons\/128px.png", "256": "assets\/icons\/256px.png", "512": "assets\/icons\/512px.png", "1024": "assets\/icons\/1024px.png" } }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "videoCheck.js" ], "run_at": "document_idle", "all_frames": true } ], "icons": { "16": "assets\/icons\/16px.png", "32": "assets\/icons\/32px.png", "64": "assets\/icons\/64px.png", "128": "assets\/icons\/128px.png", "256": "assets\/icons\/256px.png", "512": "assets\/icons\/512px.png", "1024": "assets\/icons\/1024px.png" }, "permissions": [ "storage", "idle", "tabs", "notifications" ], "manifest_version": 3 } |