Page Timer
How long have I been on this page?
Page Timer란 무엇입니까?
Page Timer은(는) [email protected]에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "How long have I been on this page?"입니다.
확장 프로그램 스크린샷
Page Timer 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Ever open an email, do a task, then wonder how long that took? Install this, then just look at the timer next to the URL bar. It records how long it's been since the URL has changed. Click to see the last few pages you were on and how long you spent there. All data is kept locally in ram; no data is sent over the network or saved to disk. New in version 1.7 (Oct 2017): Display seconds. Source code: https://github.com/google/page-timer/
확장 프로그램 기본 정보
이름 | Page Timer |
ID | enljfpkeopdppbphgadibdpodgjhmabm |
공식 URL | https://chromewebstore.google.com/detail/page-timer/enljfpkeopdppbphgadibdpodgjhmabm |
설명 | How long have I been on this page? |
파일 크기 | 32.27 KB |
설치 횟수 | 7,000 |
현재 버전 | 1.7 |
최근 업데이트 | 2017-10-18 |
출시 날짜 | 2017-10-18 |
평점 | 4.67/5 총 12 개의 평점 |
개발자 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/google/page-timer/ |
개인정보 보호 정책 페이지 URL | https://github.com/google/page-timer/blob/master/PRIVACY.md |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Page Timer", "description": "How long have I been on this page?", "version": "1.7", "author": "[email protected]", "permissions": [ "tabs" ], "icons": { "16": "clock16.png", "48": "clock48.png", "128": "clock128.png" }, "browser_action": { "default_icon": { "19": "browser-action-19.png", "38": "browser-action-38.png" } }, "background": { "scripts": [ "common.js", "background.js" ], "persistent": true }, "options_page": "options.html" } |