Clockify Time Tracker

Track time from anywhere on the web and improve productivity.

Clockify Time Trackerคืออะไร?

Clockify Time Tracker เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://clockify.me และคุณลักษณะหลักของมันคือ "Track time from anywhere on the web and improve productivity."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Clockify Time Tracker

ดาวน์โหลดไฟล์ส่วนขยาย Clockify Time Tracker ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Track time from anywhere on the web with one click. Later, analyze and export time at https://clockify.me/reports/summary

FEATURES

• Integrates with 50+ web apps
• Idle detection
• Reminders
• Pomodoro timer
• Automatically start/stop timer
• Start a timer from selected text
• Start/stop timer shortcut (Ctrl+Shift+U)
• Default project for new time entries

Q: Why does the extension need access to "read and change all your data on the websites you visit"?
A: We use the "Read and change all your data on the websites you visit" permission only for putting a timer button on other websites and taking the task's names as a description for the timer. If you don't wish to see the button on other websites, you can disable it in extension's Settings>Integrations.

The code for this extension is open source. Feel free to examine it and contribute on Github: https://github.com/clockify/browser-extension

For more information on how Clockify works, check out our help article https://clockify.me/help/apps/chrome-extension

If you have any issues or feedback, send us an email at [email protected]

ABOUT CLOCKIFY

Clockify is a time tracker that allows you to track the time you spend on projects and analyze your productivity. You can use Clockify on the web, desktop, and mobile – all your tracked data is synced in real time so you can seamlessly switch between devices.

- Free and simple online timer
- Analyze time in reports and export data
- Invite team and track time together
- Manage projects and monitor progress                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Clockify Time Tracker Clockify Time Tracker
ID pmjeegjhjdlccodhacdgbgfagbpmccpe
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/clockify-time-tracker/pmjeegjhjdlccodhacdgbgfagbpmccpe
คำอธิบาย Track time from anywhere on the web and improve productivity.
ขนาดไฟล์ 1.3 MB
จำนวนการติดตั้ง 375,265
เวอร์ชันปัจจุบัน 2.10.14
อัปเดตครั้งล่าสุด 2024-02-21
วันที่เผยแพร่ 2020-06-24
คะแนน 3.77/5 รวมทั้งหมด 173 คะแนน
ผู้พัฒนา https://clockify.me
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://clockify.me
URL หน้าช่วยเหลือ https://clockify.me/help/apps/chrome-extension
URL หน้านโยบายความเป็นส่วนตัว https://cake.com/privacy
ภาษาที่รองรับ de,en,fr,es,ru,ja,ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "__MSG_appName__",
    "short_name": "Clockify",
    "description": "__MSG_appDesc__",
    "default_locale": "en",
    "background": {
        "service_worker": "sw.js"
    },
    "version": "2.10.14",
    "action": {
        "default_popup": "index.html",
        "default_title": "Clockify"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "js": [
                "contentScripts\/service-localstorage.js",
                "contentScripts\/clockifyLocales.js"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "js": [
                "vendors.bundle.js",
                "main.bundle.js"
            ],
            "css": [
                "styles\/main-integration.css"
            ]
        }
    ],
    "options_page": "settings.html",
    "commands": {
        "quick-start-stop-entry": {
            "suggested_key": {
                "default": "Ctrl+Shift+U"
            },
            "description": "Quick start\/stop current entry"
        }
    },
    "icons": {
        "16": "assets\/images\/logo-16.png",
        "48": "assets\/images\/logo-48.png",
        "128": "assets\/images\/logo-128.png"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "assets\/images\/*.png",
                "assets\/images\/*.svg",
                "assets\/images\/ui-icons\/*.svg"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "permissions": [
        "background",
        "contextMenus",
        "storage",
        "tabs",
        "activeTab",
        "identity",
        "idle",
        "notifications",
        "scripting",
        "alarms"
    ],
    "host_permissions": [
        "*:\/\/*\/",
        "*:\/\/*.clockify.me\/*"
    ],
    "optional_permissions": [
        "*:\/\/*\/"
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'"
    },
    "externally_connectable": {
        "ids": [
            "*"
        ],
        "accepts_tls_channel_id": false
    }
}