Copy JIRA ID

Copies JIRA ID.

什麼是Copy JIRA ID?

Copy JIRA ID是由https://adesh.dev開發的Chrome擴展程式,該擴展的主要功能是“Copies JIRA ID.”。

擴展截圖

screenshot

下載Copy JIRA ID擴展crx文件

下載Copy JIRA ID擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        TL;DR This extension adds a 'Copy JIRA ID' button (to copy the JIRA ID of course XD)

Atlassian JIRA does not have an easy way to copy the JIRA ID. It was easier in old UX, but with the new UX, a lot of garbage is copied as well. They have a copy link button, but that wasn't really useful for me. I wrote this extension out of frustration, which adds a standalone button next to the JIRA ID, to save you from the hassle. Feel free to give it a try.

I try my best to keep it updated to latest and also support old versions of JIRA. In case it does not work for you create an issue at https://github.com/AdeshAtole/copy-jira-id/issues/new OR drop a mail                    

擴展基本資訊

名稱 Copy JIRA ID Copy JIRA ID
ID fiokagkoilhjielhjemghmnddbjbplln
官方網址 https://chromewebstore.google.com/detail/copy-jira-id/fiokagkoilhjielhjemghmnddbjbplln
簡介 Copies JIRA ID.
檔案大小 9 KB
安裝次數 65
目前版本 0.1.6
更新時間 2021-11-16
上架時間 2020-05-19
評分 3.75/5 共 4 次評分
開發者 https://adesh.dev
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/AdeshAtole/copy-jira-id
說明頁面URL https://github.com/AdeshAtole/copy-jira-id
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Copy JIRA ID",
    "version": "0.1.6",
    "description": "Copies JIRA ID.",
    "manifest_version": 2,
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*.atlassian.net\/browse\/*",
                "https:\/\/*.atlassian.net\/browse\/*",
                "https:\/\/*.jira.com\/browse\/*"
            ],
            "js": [
                "contentScript.js"
            ],
            "css": [
                "styles.css"
            ],
            "run_at": "document_end"
        }
    ],
    "icons": {
        "128": "icon_128.png"
    }
}