JIRA Work Log Report

An extension that shows work log report. It fetches data from JIRA REST API.

JIRA Work Log Reportคืออะไร?

JIRA Work Log Report เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Nasif และคุณลักษณะหลักของมันคือ "An extension that shows work log report. It fetches data from JIRA REST API."

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

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย JIRA Work Log Report

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

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

                        An extension that shows JIRA work log report. It fetches data using JIRA REST API.

This extension calls JIRA REST API to get information on JIRA worklogs. For the extension to be able to call the APIs successfully, following information is collected from user explicitly in a form (in settings popup of the extensions page):

1. URL of the JIRA site (i.e. {account-domain}.atlassian.net).
2. User's JIRA account's email address.
3. An API token user creates in JIRA to be used in this extension.

The extension stores this information in browser (using localStorage). To fetch the work log information, the extension created the API URL 
using the URL user provided, and passes the email/API token as base64 encoded standard Authorization Header (i.e. basic authentication).

The extension does not use the information user provides in any other way apart from what described above.                    

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

ชื่อ JIRA Work Log Report JIRA Work Log Report
ID fiflmfdkmjodhcppbeabhjdmljkifigf
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/jira-work-log-report/fiflmfdkmjodhcppbeabhjdmljkifigf
คำอธิบาย An extension that shows work log report. It fetches data from JIRA REST API.
ขนาดไฟล์ 91.88 KB
จำนวนการติดตั้ง 1,245
เวอร์ชันปัจจุบัน 0.0.0.5
อัปเดตครั้งล่าสุด 2020-03-11
วันที่เผยแพร่ 2020-03-09
คะแนน 4.44/5 รวมทั้งหมด 9 คะแนน
ผู้พัฒนา Nasif
อีเมล [email protected]
ประเภทการชำระเงิน free
URL หน้านโยบายความเป็นส่วนตัว https://m-nasif.github.io/jira-work-log-report/privacy
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "JIRA Work Log Report",
    "description": "An extension that shows work log report. It fetches data from JIRA REST API.",
    "version": "0.0.0.5",
    "permissions": [
        "https:\/\/*.atlassian.net\/",
        "http:\/\/*.atlassian.net\/"
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "icons": {
        "16": "icons\/16.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    },
    "browser_action": {
        "default_title": "JIRA Time"
    },
    "manifest_version": 2
}