Jira Toggl

A web extension for syncing Toggl timelog entries to your Jira Software worklog

Jira Togglคืออะไร?

Jira Toggl เป็นส่วนขยายของ Chrome ที่พัฒนาโดย simoneldevig และคุณลักษณะหลักของมันคือ "A web extension for syncing Toggl timelog entries to your Jira Software worklog"

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

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Jira Toggl

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

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

                        This is a simple extension for syncing your Toggl entries to your Jira Software Worklog.

There are two ways you can set the Jira issue ID:

1. Set it up as a project in Toggl which also enables autocomplete in Toggl when registering time on the same task multiple times -  so win-win.

Example:
Project: EST-34
Description: Doing some work


2. Add the Jira issue in the description. It's useful if you are using Toggl Button or maybe just like to add the issue to the description. This feature has to be enabled under settings.

Example:
Description: EST-34: Doing some work


To use the extension you will need to login into Jira since it uses the cookies to authenticate your user. Do remember to fill out your Jira URL / email and Toggl API token(located at "My Profile" your Toggl account) in the settings pane.

If you are a developer and would like to contribute to the extension - you can have a look at the repo: https://github.com/simoneldevig/jira-toggl                    

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

ชื่อ Jira Toggl Jira Toggl
ID llmkgghnjkmdniffbfjhgcinekkkicki
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/jira-toggl/llmkgghnjkmdniffbfjhgcinekkkicki
คำอธิบาย A web extension for syncing Toggl timelog entries to your Jira Software worklog
ขนาดไฟล์ 285 KB
จำนวนการติดตั้ง 473
เวอร์ชันปัจจุบัน 1.7.0
อัปเดตครั้งล่าสุด 2023-03-04
วันที่เผยแพร่ 2019-12-12
คะแนน 4.25/5 รวมทั้งหมด 8 คะแนน
ผู้พัฒนา simoneldevig
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Jira Toggl",
    "description": "A web extension for syncing Toggl timelog entries to your Jira Software worklog",
    "version": "1.7.0",
    "permissions": [
        "https:\/\/*\/",
        "http:\/\/*\/",
        "storage"
    ],
    "applications": {
        "gecko": {
            "id": "{b8f6741b-8299-451d-ab45-6d4838409f07}"
        }
    },
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "manifest_version": 2,
    "icons": {
        "16": "icons\/jira-toggl_16.png",
        "48": "icons\/jira-toggl_48.png",
        "128": "icons\/jira-toggl_128.png"
    },
    "browser_action": {
        "default_title": "jira-toggl",
        "default_popup": "popup\/popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "options_ui": {
        "page": "options\/options.html",
        "chrome_style": true
    }
}