Jira descriptive link

Easily copy an issue's name & key. Paste as a link into Slack, Teams, email... Easy to find later. Not an official Jira extension.

Jira descriptive linkとは何ですか?

Jira descriptive linkはfloodmeadowsによって開発されたChromeの拡張機能で、その主な機能は「Easily copy an issue's name & key. Paste as a link into Slack, Teams, email... Easy to find later. Not an official Jira extension.」です。

拡張機能のスクリーンショット

screenshot

Jira descriptive link拡張機能のCRXファイルをダウンロード

Jira descriptive link拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        For Jira Server (self-hosted, not Jira Cloud). Adds a button to the issue (story) details view to copy a link to that issue. Ideal for pasting into Slack, Teams, or email etc.
The link includes the issue name (summary) and key, so you can see at a glance which issue it is. Also means that you can easily search through your messages by issue key to find all references to that issue, even if the issue name has changed since the link was pasted.
Works with Jira, but is not made, endorsed, or supported by Jira or Atlassian.                    

拡張機能の基本情報

名前 Jira descriptive link Jira descriptive link
ID bfnkoiobloacajlibohhniedpcjibnmm
公式URL https://chromewebstore.google.com/detail/jira-descriptive-link/bfnkoiobloacajlibohhniedpcjibnmm
説明 Easily copy an issue's name & key. Paste as a link into Slack, Teams, email... Easy to find later. Not an official Jira extension.
ファイルサイズ 40.01 KB
インストール数 87
現在のバージョン 0.2
最終更新日 2023-07-14
公開日 2023-01-15
評価 5.00/5 合計 1 レビュー
開発者 floodmeadows
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/floodmeadows/jira-descriptive-link-chrome-extension
ヘルプページのURL https://github.com/floodmeadows/jira-descriptive-link-chrome-extension/issues
プライバシーポリシーページのURL https://github.com/floodmeadows/browser-extensions/wiki/Privacy-Policy
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Jira descriptive link",
    "description": "Easily copy an issue's name & key. Paste as a link into Slack, Teams, email... Easy to find later. Not an official Jira extension.",
    "version": "0.2",
    "manifest_version": 3,
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/browse\/*"
            ],
            "js": [
                "jira-descriptive-link.user.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "icons": {
        "16": "images\/icon16.png",
        "32": "images\/icon32.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "converted_from_user_script": true
}