Clipboard for Rally
Copy different type of links from (almost) any screen of Rally
Cos'è Clipboard for Rally?
Clipboard for Rally è un'estensione di Chrome sviluppata da Ulysse Prygiel, e la sua funzione principale è "Copy different type of links from (almost) any screen of Rally".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Clipboard for Rally
Scarica i file di estensione Clipboard for Rally in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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
Informazioni di Base sull'Estensione
Nome | Clipboard for Rally |
ID | gaoglodjegfcmjckjagjhbollbibjjnf |
URL Ufficiale | https://chromewebstore.google.com/detail/clipboard-for-rally/gaoglodjegfcmjckjagjhbollbibjjnf |
Descrizione | Copy different type of links from (almost) any screen of Rally |
Dimensione del File | 40.01 KB |
Conteggio Installazioni | 30 |
Versione Corrente | 0.9.3 |
Ultimo Aggiornamento | 2016-03-18 |
Data di Pubblicazione | 2016-03-17 |
Valutazione | 5.00/5 Totale 3 Valutazioni |
Sviluppatore | Ulysse Prygiel |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/ulybu/rally-ext |
URL della Pagina di Aiuto | https://github.com/ulybu/rally-ext/issues |
Lingue Supportate | 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" } |