Clipboard for Rally

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

Qu'est-ce que Clipboard for Rally ?

Clipboard for Rally est une extension Chrome développée par Ulysse Prygiel, et sa fonction principale est "Copy different type of links from (almost) any screen of Rally".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Clipboard for Rally

Téléchargez les fichiers d'extension Clipboard for Rally au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom Clipboard for Rally Clipboard for Rally
ID gaoglodjegfcmjckjagjhbollbibjjnf
URL Officiel https://chromewebstore.google.com/detail/clipboard-for-rally/gaoglodjegfcmjckjagjhbollbibjjnf
Description Copy different type of links from (almost) any screen of Rally
Taille du Fichier 40.01 KB
Nombre d'Installations 30
Version Actuelle 0.9.3
Dernière Mise à Jour 2016-03-18
Date de Publication 2016-03-17
Évaluation 5.00/5 Total 3 Évaluations
Développeur Ulysse Prygiel
Type de Paiement free
Site Web de l'Extension https://github.com/ulybu/rally-ext
URL de la Page d'Aide https://github.com/ulybu/rally-ext/issues
Langues Prises en Charge 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"
}