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 |
官方網址 | 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" } |