Knilollert for Trello
Adds external clickable links to the tracker in the headers of trello cards
Что такое Knilollert for Trello?
Knilollert for Trello - это расширение Chrome, разработанное Egor Ryzhov, и его основная функция - "Adds external clickable links to the tracker in the headers of trello cards".
Снимки экрана расширения
Скачать файл CRX расширения Knilollert for Trello
Скачайте файлы расширений Knilollert for Trello в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Knilollert gives you the ability to add clickable tracker links to Trello card headers Now you may: - Add several links to single header - Use any of the task IDs as numeric and alpha numeric How to config - Open Knilollert options - Add path to your tracker with task code pattern in it (for example "https://my_tracker.my_company.com/issues/#{task}"). "#{task}" will be changed to task code from Trello card. How to use - Add task codes in braces to Trello card titles, like this "My card title with task link {1234} or such task link {PROJ-4217}". - Place code on any place in title.
Основная информация о расширении
Название | Knilollert for Trello |
ID | ilngbjlkdlehookkclleoacmjkgmibhe |
Официальный URL | https://chromewebstore.google.com/detail/knilollert-for-trello/ilngbjlkdlehookkclleoacmjkgmibhe |
Описание | Adds external clickable links to the tracker in the headers of trello cards |
Размер файла | 18.06 KB |
Количество установок | 39 |
Текущая Версия | 0.0.0.5 |
Последнее Обновление | 2020-12-04 |
Дата публикации | 2017-07-12 |
Рейтинг | 5.00/5 Всего 2 оценок |
Разработчик | Egor Ryzhov |
Электронная почта | [email protected] |
Тип оплаты | free |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Knilollert for Trello", "short_name": "Knilollert", "version": "0.0.0.5", "description": "Adds external clickable links to the tracker in the headers of trello cards", "options_page": "options.html", "content_scripts": [ { "matches": [ "https:\/\/trello.com\/*" ], "js": [ "knilollert.js" ], "css": [ "knilollert.css" ] } ], "manifest_version": 2, "icons": { "128": "knilollert_128.png" }, "permissions": [ "storage" ] } |