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
公式URL 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
Eメール [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"
    }
}