Web Timer
Keep track of how you spend your time on the web.
Web Timer란 무엇입니까?
Web Timer은(는) DK에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Keep track of how you spend your time on the web."입니다.
확장 프로그램 스크린샷
Web Timer 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Web Timer is a simple and intuitive extension that lets you keep track of how you're spending your time on the web. Web Timer keeps track of the tab that you are actively using and updates its stats every 3 seconds. Features: - Helps you visualize the time you're spending by displaying the data in a pie chart - Keeps track of stats for today, daily average, and all-time - Stops counting if your machine is idle for more than 30 seconds - Only counts time when Chrome has focus - Shows the number of minutes spent on current website over the icon - Easily share your Web Timer stats with friends Instructions: - Use the options page to avoid tracking certain sites Note: I originally sold the extension (https://chrome.google.com/webstore/detail/web-timer/ggnjbdfgigejghknieofeahaknkjafim?hl=en) but it seems that the buyer is injecting redirects and other suspicious behavior so I'm uploading a clean copy. The source code for this extension is at https://github.com/dskang/webtimer
확장 프로그램 기본 정보
이름 | Web Timer |
ID | efkkjffdefaaioagghcaflicdajfhceo |
공식 URL | https://chromewebstore.google.com/detail/web-timer/efkkjffdefaaioagghcaflicdajfhceo |
설명 | Keep track of how you spend your time on the web. |
파일 크기 | 24.12 KB |
설치 횟수 | 8,199 |
현재 버전 | 1.4.9 |
최근 업데이트 | 2020-08-07 |
출시 날짜 | 2017-07-25 |
평점 | 4.36/5 총 36 개의 평점 |
개발자 | DK |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Web Timer", "version": "1.4.9", "description": "Keep track of how you spend your time on the web.", "icons": { "128": "icon_128.png" }, "background": { "scripts": [ "background.js" ] }, "permissions": [ "idle", "tabs" ], "browser_action": { "default_title": "Web Timer", "default_icon": "icon_19.png", "default_popup": "popup.html" }, "options_page": "options.html", "content_security_policy": "script-src 'self' 'unsafe-eval' https:\/\/www.gstatic.com; object-src 'self'" } |