Clipboard for Rally

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

Apa itu Clipboard for Rally?

Clipboard for Rally adalah ekstensi Chrome yang dikembangkan oleh Ulysse Prygiel, dan fitur utamanya adalah "Copy different type of links from (almost) any screen of Rally".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Clipboard for Rally

Unduh file ekstensi Clipboard for Rally dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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                    

Informasi Dasar Ekstensi

Nama Clipboard for Rally Clipboard for Rally
ID gaoglodjegfcmjckjagjhbollbibjjnf
URL Resmi https://chromewebstore.google.com/detail/clipboard-for-rally/gaoglodjegfcmjckjagjhbollbibjjnf
Deskripsi Copy different type of links from (almost) any screen of Rally
Ukuran File 40.01 KB
Jumlah Instalasi 30
Versi Saat Ini 0.9.3
Terakhir Diperbarui 2016-03-18
Tanggal Publikasi 2016-03-17
Penilaian 5.00/5 Total 3 Penilaian
Pengembang Ulysse Prygiel
Tipe Pembayaran free
Situs Ekstensi https://github.com/ulybu/rally-ext
URL Halaman Bantuan https://github.com/ulybu/rally-ext/issues
Bahasa yang Didukung 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"
}