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 là gì?

Jira descriptive link là một tiện ích mở rộng Chrome được phát triển bởi floodmeadows, và tính năng chính của nó là "Easily copy an issue's name & key. Paste as a link into Slack, Teams, email... Easy to find later. Not an official Jira extension.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Jira descriptive link

Tải xuống các tệp mở rộng Jira descriptive link dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Jira descriptive link Jira descriptive link
ID bfnkoiobloacajlibohhniedpcjibnmm
URL Chính Thức https://chromewebstore.google.com/detail/jira-descriptive-link/bfnkoiobloacajlibohhniedpcjibnmm
Mô tả Easily copy an issue's name & key. Paste as a link into Slack, Teams, email... Easy to find later. Not an official Jira extension.
Kích Thước Tệp 40.01 KB
Số Lần Cài Đặt 87
Phiên Bản Hiện Tại 0.2
Cập Nhật Lần Cuối 2023-07-14
Ngày Phát Hành 2023-01-15
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển floodmeadows
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/floodmeadows/jira-descriptive-link-chrome-extension
URL Trang Trợ Giúp https://github.com/floodmeadows/jira-descriptive-link-chrome-extension/issues
URL Trang Chính Sách Bảo Mật https://github.com/floodmeadows/browser-extensions/wiki/Privacy-Policy
Ngôn Ngữ Được Hỗ Trợ 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
}