My Hours Time Tracker

My Hours Time Tracker

My Hours Time Tracker란 무엇입니까?

My Hours Time Tracker은(는) https://myhours.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "My Hours Time Tracker"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        ### 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]                    

확장 프로그램 기본 정보

이름 My Hours Time Tracker My Hours Time Tracker
ID nddemmhobkicpmpdfpcihpfhfnofgjcc
공식 URL https://chromewebstore.google.com/detail/my-hours-time-tracker/nddemmhobkicpmpdfpcihpfhfnofgjcc
설명 My Hours Time Tracker
파일 크기 2.74 MB
설치 횟수 273
현재 버전 1.4.2
최근 업데이트 2023-11-17
출시 날짜 2023-01-25
평점 3.67/5 총 3 개의 평점
개발자 https://myhours.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://myhours.com/free-chrome-time-tracking-browser-extension
도움말 페이지 URL https://myhours.com/support
개인정보 보호 정책 페이지 URL https://myhours.com/legal/terms-of-use
지원되는 언어 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"
    }
}