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
电子邮箱 [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"
    }
}