Tempo Time Tracker

An extension that allows easily log time into the Tempo Jira plugin

Tempo Time Tracker là gì?

Tempo Time Tracker là một tiện ích mở rộng Chrome được phát triển bởi jira.tempo.tracker, và tính năng chính của nó là "An extension that allows easily log time into the Tempo Jira plugin".

Ả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 Tempo Time Tracker

Tải xuống các tệp mở rộng Tempo 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

                        Tempo Time Tracker could help you save a lot of time by providing an accessible, easy-to-use bridge between you and the Tempo app. The idea comes from individual experiences of using Tempo. So far to manage time, we keep using notepad. This option was not suitable for us, because it took a lot of time and sometimes could be forgotten. In response to this Tempo Time Tracker has been created!

★ Authorization free
The extension is 100% secure and does not require any Jira account credentials.

★ Browse worklogs
Extension scans the current tempo page and takes a currently browsed week’s worklogs. The worklogs are presented as easy to access list. Normally, the native tempo app hides descriptions of tickets by default, but don’t worry - Jira Tempo Tracker provides all the important information about worklogs.

★ Continue tracking existing worklogs
Each currently logged worklog could be continued by clicking the play button. There is a built-in restriction that only one worklog could be tracked. If you will try to track two worklogs at the same time, the first one current progress will be stopped and synchronized with Tempo, then the second item will start counting.

★ Create new worklogs
You can just start tracking a new worklog from scratch. Description and issue could be provided at any time. But both of them will be required while synchronizing with Tempo.

★ Log a provided amount of time proportionally
Ideal option to log your lunch or other kinds of break proportionally to each task of selected day. Just select the day and amount of minutes and the script will execute an update to each worklog. Each value is measured by comparing worklog time to summary day time logged so far.

★ Use in any tab
The extension could be activated in any chrome tab. Just make sure that the native Tempo app is opened in one of the tabs. In another case, you will be notified that the Tempo app has not been found. 

In case of questions, suggestions, or bugs please let us know :)

Changelog 31.05.2022
Add compability with more jira instances

Changelog 30.06.2021
Improve finding Tempo tab
Improve browsing and picking issues

Changelog 26.06.2021
Fix bug with logging proportionally and denying playing item collapse

Changelog 01.06.2021
Fix bug with not logging proportionally after popup close
Fix bug with invalid time sync while saving worklog and popup close
Fix bug with invalid time when start tracking
Add error tracking                    

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

Tên Tempo Time Tracker Tempo Time Tracker
ID klhbhofldpbbfnlehcbmmabijahkkdbb
URL Chính Thức https://chromewebstore.google.com/detail/tempo-time-tracker/klhbhofldpbbfnlehcbmmabijahkkdbb
Mô tả An extension that allows easily log time into the Tempo Jira plugin
Kích Thước Tệp 667 KB
Số Lần Cài Đặt 311
Phiên Bản Hiện Tại 0.0.18
Cập Nhật Lần Cuối 2022-06-01
Ngày Phát Hành 2021-05-09
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển jira.tempo.tracker
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Tempo Time Tracker",
    "description": "An extension that allows easily log time into the Tempo Jira plugin",
    "version": "0.0.18",
    "browser_action": {
        "default_icon": "assets\/logo_16.png",
        "default_popup": "index.html"
    },
    "background": {
        "scripts": [
            "backgroundScript.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/app.tempo.io\/*"
            ],
            "js": [
                "\/contentScript.js"
            ],
            "all_frames": true
        }
    ],
    "icons": {
        "16": "assets\/logo_16.png",
        "48": "assets\/logo_48.png",
        "128": "assets\/logo_128.png"
    },
    "permissions": [
        "storage",
        "activeTab"
    ]
}