Clipboard for Rally

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

Hvad er Clipboard for Rally?

Clipboard for Rally er en Chrome-udvidelse udviklet af Ulysse Prygiel, og dens hovedfunktion er "Copy different type of links from (almost) any screen of Rally".

Udvidelsesskærmbilleder

screenshot

Download Clipboard for Rally-udvidelses-CRX-fil

Download Clipboard for Rally-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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                    

Grundlæggende oplysninger om udvidelsen

Navn Clipboard for Rally Clipboard for Rally
ID gaoglodjegfcmjckjagjhbollbibjjnf
Officiel URL https://chromewebstore.google.com/detail/clipboard-for-rally/gaoglodjegfcmjckjagjhbollbibjjnf
Beskrivelse Copy different type of links from (almost) any screen of Rally
Filstørrelse 40.01 KB
Antal Installationer 30
Nuværende Version 0.9.3
Senest Opdateret 2016-03-18
Udgivelsesdato 2016-03-17
Bedømmelse 5.00/5 Samlet 3 Bedømmelser
Udvikler Ulysse Prygiel
Betalingsmetode free
Udvidelseswebsted https://github.com/ulybu/rally-ext
Hjælpeside-URL https://github.com/ulybu/rally-ext/issues
Understøttede Sprog 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"
}