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」です。
拡張機能のスクリーンショット
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 |
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" } |