Clipboard for Rally
Copy different type of links from (almost) any screen of Rally
Was ist Clipboard for Rally?
Clipboard for Rally ist eine Chrome-Erweiterung, die von Ulysse Prygiel entwickelt wurde, und ihr Hauptmerkmal ist "Copy different type of links from (almost) any screen of Rally".
Erweiterungsscreenshots
Clipboard for Rally-Erweiterungs-CRX-Datei herunterladen
Laden Sie Clipboard for Rally-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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 Grundlegende Informationen zur Erweiterung
| Name | |
| ID | gaoglodjegfcmjckjagjhbollbibjjnf |
| Offizielle URL | https://chromewebstore.google.com/detail/clipboard-for-rally/gaoglodjegfcmjckjagjhbollbibjjnf |
| Beschreibung | Copy different type of links from (almost) any screen of Rally |
| Dateigröße | 40.01 KB |
| Installationsanzahl | 30 |
| Aktuelle Version | 0.9.3 |
| Letztes Update | 2016-03-18 |
| Veröffentlichungsdatum | 2016-03-17 |
| Bewertung | 5.00/5 Insgesamt 3 Bewertungen |
| Entwickler | Ulysse Prygiel |
| Zahlungsart | free |
| Erweiterungswebsite | https://github.com/ulybu/rally-ext |
| Hilfeseite URL | https://github.com/ulybu/rally-ext/issues |
| Unterstützte Sprachen | 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"
} | |