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은(는) Nasif에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "An extension that shows work log report. It fetches data from JIRA REST API."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

JIRA Work Log Report 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        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
}