Clipboard for Rally

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

Τι είναι το Clipboard for Rally;

Το Clipboard for Rally είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Ulysse Prygiel, και η κύρια λειτουργία του είναι "Copy different type of links from (almost) any screen of Rally".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης Clipboard for Rally

Λήψη αρχείων επέκτασης Clipboard for Rally σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Clipboard for Rally Clipboard for Rally
ID gaoglodjegfcmjckjagjhbollbibjjnf
Επίσημο URL https://chromewebstore.google.com/detail/clipboard-for-rally/gaoglodjegfcmjckjagjhbollbibjjnf
Περιγραφή Copy different type of links from (almost) any screen of Rally
Μέγεθος Αρχείου 40.01 KB
Αριθμός Εγκαταστάσεων 30
Τρέχουσα Έκδοση 0.9.3
Τελευταία Ενημέρωση 2016-03-18
Ημερομηνία Δημοσίευσης 2016-03-17
Αξιολόγηση 5.00/5 Συνολικά 3 Αξιολογήσεις
Προγραμματιστής Ulysse Prygiel
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/ulybu/rally-ext
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/ulybu/rally-ext/issues
Υποστηριζόμενες Γλώσσες 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"
}