Clipboard for Rally
Copy different type of links from (almost) any screen of Rally
What is Clipboard for Rally?
Clipboard for Rally is a Chrome extension developed by Ulysse Prygiel, and its main feature is "Copy different type of links from (almost) any screen of Rally".
Extension Screenshots
Download Clipboard for Rally Extension CRX File
Download Clipboard for Rally extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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 Extension Basic Information
| Name | |
| ID | gaoglodjegfcmjckjagjhbollbibjjnf |
| Official URL | https://chromewebstore.google.com/detail/clipboard-for-rally/gaoglodjegfcmjckjagjhbollbibjjnf |
| Description | Copy different type of links from (almost) any screen of Rally |
| File Size | 40.01 KB |
| Installation Count | 30 |
| Current Version | 0.9.3 |
| Last Updated | 2016-03-18 |
| Publish Date | 2016-03-17 |
| Rating | 5.00/5 Total 3 Ratings |
| Developer | Ulysse Prygiel |
| Payment Type | free |
| Extension Website | https://github.com/ulybu/rally-ext |
| Help Page URL | https://github.com/ulybu/rally-ext/issues |
| Supported Languages | 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"
} | |