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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
}