Trello Short URL
This extension provides a button on a trello card to copy the short url to the clipboard.
Что такое Trello Short URL?
Trello Short URL - это расширение Chrome, разработанное Nick Thompson, и его основная функция - "This extension provides a button on a trello card to copy the short url to the clipboard.".
Снимки экрана расширения
Скачать файл CRX расширения Trello Short URL
Скачайте файлы расширений Trello Short URL в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Adds a button to Trello cards to copy the short URL straight to the clipboard.
Please report any issues into the GitHub Repo - https://github.com/njt1982/TrelloShortUrl Основная информация о расширении
| Название | |
| ID | kknbnjdfmclblpjkedhjfbbkgjomciga |
| Официальный URL | https://chromewebstore.google.com/detail/trello-short-url/kknbnjdfmclblpjkedhjfbbkgjomciga |
| Описание | This extension provides a button on a trello card to copy the short url to the clipboard. |
| Размер файла | 22.16 KB |
| Количество установок | 339 |
| Текущая Версия | 0.3 |
| Последнее Обновление | 2015-02-02 |
| Дата публикации | 2015-02-02 |
| Рейтинг | 4.40/5 Всего 5 оценок |
| Разработчик | Nick Thompson |
| Тип оплаты | free |
| Официальный сайт расширения | https://github.com/njt1982/TrelloShortUrl |
| URL страницы помощи | https://github.com/njt1982/TrelloShortUrl/issues |
| Поддерживаемые языки | en-GB |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Trello Short URL",
"description": "This extension provides a button on a trello card to copy the short url to the clipboard.",
"version": "0.3",
"content_scripts": [
{
"matches": [
"https:\/\/trello.com\/*"
],
"js": [
"TrelloShortUrl.js"
]
}
],
"permissions": [
"https:\/\/trello.com\/",
"clipboardWrite"
],
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
}
} | |