Clipboard for Rally
Copy different type of links from (almost) any screen of Rally
O que é Clipboard for Rally?
Clipboard for Rally é uma extensão do Chrome desenvolvida por Ulysse Prygiel, e sua principal característica é "Copy different type of links from (almost) any screen of Rally".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Clipboard for Rally
Baixe arquivos de extensão Clipboard for Rally no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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 Informações Básicas da Extensão
| Nome | |
| ID | gaoglodjegfcmjckjagjhbollbibjjnf |
| URL Oficial | https://chromewebstore.google.com/detail/clipboard-for-rally/gaoglodjegfcmjckjagjhbollbibjjnf |
| Descrição | Copy different type of links from (almost) any screen of Rally |
| Tamanho do Arquivo | 40.01 KB |
| Contagem de Instalações | 30 |
| Versão Atual | 0.9.3 |
| Última Atualização | 2016-03-18 |
| Data de Publicação | 2016-03-17 |
| Classificação | 5.00/5 Total de 3 Avaliações |
| Desenvolvedor | Ulysse Prygiel |
| Tipo de Pagamento | free |
| Site da Extensão | https://github.com/ulybu/rally-ext |
| URL da Página de Ajuda | https://github.com/ulybu/rally-ext/issues |
| Idiomas Suportados | 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"
} | |