My Hours Time Tracker

My Hours Time Tracker

My Hours Time Tracker là gì?

My Hours Time Tracker là một tiện ích mở rộng Chrome được phát triển bởi https://myhours.com, và tính năng chính của nó là "My Hours Time Tracker".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng My Hours Time Tracker

Tải xuống các tệp mở rộng My Hours Time Tracker dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        ### Time tracking for teams

Track time without the need for opening another tab. Start timer or enter time manually right from the browser extension.

1. Setup your My Hours account
Sign up for My Hours account on myhours.com.

Create Projects, Tasks and Clients and invite your Team members to track time.

2. Download extension
Download Chrome extension from this page.

3. Sign in into your account
Each team member logs in with the same email and password they used in the web app.

4. Track time on projects & tasks
Select from a list of pre-assigned clients, project and tasks. Optionally add tags or custom description and enter time.

5. Start the timer or enter time manually
Start and stop the running stopwatch without opening another browser tab. Edit your time logs at any time.

6. Generate reports for clients or managers
Finally go to myhours.com web app to create professional-looking reports for your clients or managers. Select from available reports and customize it based on your needs. Download to PDF or export to XLS.

For all questions reach out to [email protected]                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên My Hours Time Tracker My Hours Time Tracker
ID nddemmhobkicpmpdfpcihpfhfnofgjcc
URL Chính Thức https://chromewebstore.google.com/detail/my-hours-time-tracker/nddemmhobkicpmpdfpcihpfhfnofgjcc
Mô tả My Hours Time Tracker
Kích Thước Tệp 2.74 MB
Số Lần Cài Đặt 273
Phiên Bản Hiện Tại 1.4.2
Cập Nhật Lần Cuối 2023-11-17
Ngày Phát Hành 2023-01-25
Đánh Giá 3.67/5 Tổng số 3 Đánh Giá
Nhà Phát Triển https://myhours.com
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://myhours.com/free-chrome-time-tracking-browser-extension
URL Trang Trợ Giúp https://myhours.com/support
URL Trang Chính Sách Bảo Mật https://myhours.com/legal/terms-of-use
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "My Hours Time Tracker",
    "description": "My Hours Time Tracker",
    "version": "1.4.2",
    "manifest_version": 3,
    "action": {
        "default_popup": "index.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/app.clickup.com\/*",
                "https:\/\/app.asana.com\/*",
                "https:\/\/*.monday.com\/*",
                "https:\/\/*.basecamp.com\/*"
            ],
            "js": [
                "\/jquery.min.js",
                "\/select2.min.js",
                "\/content.js",
                "\/atlassian.js"
            ],
            "css": [
                "\/select2.min.css",
                "\/style.css",
                "\/style2.css"
            ]
        }
    ],
    "icons": {
        "16": "mh_logo_128_gray.png",
        "48": "mh_logo_128_gray.png",
        "128": "mh_logo_128_gray.png"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "mh_logo_128.png",
                "mh_logo_128_gray.png"
            ],
            "matches": [
                "https:\/\/app.clickup.com\/*",
                "https:\/\/app.asana.com\/*",
                "https:\/\/*.monday.com\/*",
                "https:\/\/*.basecamp.com\/*"
            ]
        }
    ],
    "host_permissions": [
        "https:\/\/myhoursdevelopment-api.azurewebsites.net\/*",
        "https:\/\/api2.myhours.com\/*"
    ],
    "permissions": [
        "activeTab",
        "storage"
    ],
    "background": {
        "service_worker": "background.js"
    }
}