Time Tracker

Track, analyze, control, then improve efficiency

Time Tracker란 무엇입니까?

Time Tracker은(는) https://wfhg.cc에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Track, analyze, control, then improve efficiency"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

Time Tracker 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        To be the BEST time tracking tool to help you improve your efficiency

Basic features:

✅ Track how much time you spend on each website
✅ Analyze your browsing habits
✅ Limit the time you spend on each website each day or each visit

Advanced features:

✅ Support dark mode
✅ Support to sync data with your Github Gist and Obsibian

How to use:

1. Pin the icon
2. Read websites as usual
3. Click the icon to view data

Also promise that all data is stored in Chrome Local Storage, and not send it anywhere

Available in multiple browsers:
✅ Chrome
✅ Firefox
✅ Edge

You can download the source code on https://github.com/sheepzh/timer. And you can report issues on  https://github.com/sheepzh/timer/issues with any feedback or question.                    

확장 프로그램 기본 정보

이름 Time Tracker Time Tracker
ID dkdhhcbjijekmneelocdllcldcpmekmm
공식 URL https://chromewebstore.google.com/detail/time-tracker/dkdhhcbjijekmneelocdllcldcpmekmm
설명 Track, analyze, control, then improve efficiency
파일 크기 1.46 MB
설치 횟수 2,714
현재 버전 2.1.6
최근 업데이트 2024-03-05
출시 날짜 2021-03-08
평점 4.89/5 총 36 개의 평점
개발자 https://wfhg.cc
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/sheepzh/timer
도움말 페이지 URL https://github.com/sheepzh/timer/issues
개인정보 보호 정책 페이지 URL https://www.wfhg.cc/en/privacy.html
지원되는 언어 en,es,pt-PT,uk,zh-CN,zh-TW,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_meta_marketName__",
    "description": "__MSG_meta_description__",
    "version": "2.1.6",
    "author": {
        "email": "[email protected]"
    },
    "default_locale": "en",
    "homepage_url": "https:\/\/github.com\/sheepzh\/timer",
    "manifest_version": 3,
    "icons": {
        "16": "static\/images\/icon.png",
        "48": "static\/images\/icon.png",
        "128": "static\/images\/icon.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content_scripts.js"
            ],
            "run_at": "document_start"
        }
    ],
    "permissions": [
        "storage",
        "tabs",
        "contextMenus",
        "alarms",
        "scripting"
    ],
    "host_permissions": [
        ""
    ],
    "action": {
        "default_popup": "static\/popup.html",
        "default_icon": "static\/images\/icon.png"
    },
    "options_page": "static\/app.html#\/additional\/option"
}