Hourglass
CodebaseHQ time tracker and logger
Hourglass란 무엇입니까?
Hourglass은(는) https://jsdojo.eu에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "CodebaseHQ time tracker and logger"입니다.
확장 프로그램 스크린샷
Hourglass 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Extension for CodebaseHQ projects [v1.2] - updated time keeping logic - rendering performance improvements - UI improvements - added button titles [v1.1] - added logic to automatically close duplicate task tabs - added timer reset button [v1.0] - keep track of your work without worrying about losing time - time is tracked even if task tab is closed - no time loss if you refresh the browser - prevents working on multiple tasks at the same time - shows which task is in progress if you're on a different task screen - timer can be paused - once a task is done, hit the stop button and your time will be logged
확장 프로그램 기본 정보
이름 | Hourglass |
ID | kphmjbjepakfdejkalbjdadaehfgfkco |
공식 URL | https://chromewebstore.google.com/detail/hourglass/kphmjbjepakfdejkalbjdadaehfgfkco |
설명 | CodebaseHQ time tracker and logger |
파일 크기 | 78.02 KB |
설치 횟수 | 68 |
현재 버전 | 1.2 |
최근 업데이트 | 2018-03-24 |
출시 날짜 | 2018-03-24 |
평점 | 4.33/5 총 6 개의 평점 |
개발자 | https://jsdojo.eu |
결제 유형 | free |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Hourglass", "description": "CodebaseHQ time tracker and logger", "version": "1.2", "manifest_version": 2, "browser_action": { "default_icon": "icons\/logo_32.png" }, "icons": { "32": "icons\/logo_32.png", "128": "icons\/logo_128.png", "256": "icons\/logo_256.png", "512": "icons\/logo_512.png" }, "permissions": [ "storage", "tabs", "https:\/\/*.codebasehq.com\/*\/tickets\/*" ], "author": "Radu B. Gaspar", "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/*.codebasehq.com\/*\/tickets\/*" ], "css": [ "hourglass.css" ], "js": [ "content.js" ] } ] } |