Clipboard for Rally

Copy different type of links from (almost) any screen of Rally

什么是Clipboard for Rally?

Clipboard for Rally是由Ulysse Prygiel开发的Chrome扩展程序,该扩展的主要功能是“Copy different type of links from (almost) any screen of Rally”。

扩展截图

screenshot

下载Clipboard for Rally扩展crx文件

下载Clipboard for Rally扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Copy different type of links from (almost) any screen.

GRID/LIST VIEW
  
Add a button next to each ticket to copy the url.
Choose the type of link you want to copy: 
  * url - http://host.com/path/to/ticket
  * id - US1234
  * markdown - [id: title](url)
  * confluence - [id: title | url]
  * Html - link with to the ticket with the following display text id: title

OPEN TICKET VIEW

When you're working on a ticket, quickly copy the link from any tab

Bugs and suggestions at : https://github.com/ulybu/rally-ext/issues                    

扩展基本信息

名称 Clipboard for Rally Clipboard for Rally
ID gaoglodjegfcmjckjagjhbollbibjjnf
官方URL https://chromewebstore.google.com/detail/clipboard-for-rally/gaoglodjegfcmjckjagjhbollbibjjnf
简介 Copy different type of links from (almost) any screen of Rally
文件大小 40.01 KB
安装次数 30
当前版本 0.9.3
更新时间 2016-03-18
上架时间 2016-03-17
评分 5.00/5 共3次评分
开发者 Ulysse Prygiel
付费类型 free
扩展官网 https://github.com/ulybu/rally-ext
帮助页面URL https://github.com/ulybu/rally-ext/issues
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Clipboard for Rally",
    "version": "0.9.3",
    "description": "Copy different type of links from (almost) any screen of Rally",
    "author": "[email protected]",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.rallydev.com\/*"
            ],
            "css": [
                "icons\/octicons.css",
                "src\/injection\/theme.css"
            ],
            "js": [
                "src\/shared\/lodash.custom.min.js",
                "src\/shared\/config.js",
                "src\/injection\/inject-clips.js"
            ]
        }
    ],
    "permissions": [
        "storage",
        "clipboardWrite"
    ],
    "web_accessible_resources": [
        "icons\/*.woff"
    ],
    "options_ui": {
        "page": "src\/options\/options.html",
        "chrome_style": true
    },
    "options_page": "src\/options\/options.html"
}