Clipboard for Rally

Copy different type of links from (almost) any screen of Rally

¿Qué es Clipboard for Rally?

Clipboard for Rally es una extensión de Chrome desarrollada por Ulysse Prygiel, y su función principal es "Copy different type of links from (almost) any screen of Rally".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Clipboard for Rally

Descarga archivos de extensión Clipboard for Rally en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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                    

Información Básica de la Extensión

Nombre Clipboard for Rally Clipboard for Rally
ID gaoglodjegfcmjckjagjhbollbibjjnf
URL Oficial https://chromewebstore.google.com/detail/clipboard-for-rally/gaoglodjegfcmjckjagjhbollbibjjnf
Descripción Copy different type of links from (almost) any screen of Rally
Tamaño del Archivo 40.01 KB
Cantidad de Instalaciones 30
Versión Actual 0.9.3
Última Actualización 2016-03-18
Fecha de Publicación 2016-03-17
Calificación 5.00/5 Total de 3 Calificaciones
Desarrollador Ulysse Prygiel
Tipo de Pago free
Sitio Web de la Extensión https://github.com/ulybu/rally-ext
URL de la Página de Ayuda https://github.com/ulybu/rally-ext/issues
Idiomas Soportados 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"
}