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"
}