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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "An extension that shows work log report. It fetches data from JIRA REST API."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में JIRA Work Log Report एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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
}