trello-board
enables to peek trello board from action icon popup just setup you current board and list name in the option screen and get easy…
Что такое trello-board?
trello-board - это расширение Chrome, разработанное rotagi37, и его основная функция - "enables to peek trello board from action icon popup just setup you current board and list name in the option screen and get easy…".
Скачать файл CRX расширения trello-board
Скачайте файлы расширений trello-board в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
enables to peek trello board from action icon popup just setup you current board and list name in the option screen and get easy access to the list from the extension icon
Основная информация о расширении
Название | |
ID | ndeahieadodljlbnmhkiminjacaalakm |
Официальный URL | https://chrome.google.com/webstore/detail/trello-board/ndeahieadodljlbnmhkiminjacaalakm |
Описание | enables to peek trello board from action icon popup just setup you current board and list name in the option screen and get easy… |
Размер файла | 65.42 KB |
Количество установок | 42 |
Текущая Версия | 1.0.1.6 |
Последнее Обновление | 2017-09-27 |
Дата публикации | 2017-09-27 |
Рейтинг | 5.00/5 Всего 1 оценок |
Разработчик | rotagi37 |
Электронная почта | [email protected] |
Тип оплаты | free |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "trello-board", "manifest_version": 2, "version": "1.0.1.6", "icons": { "16": "icon.png", "32": "icon.png", "48": "icon.png" }, "permissions": [ "history", "contextMenus", "clipboardWrite", "clipboardRead", "webRequest", "webRequestBlocking", "tabs", "https:\/\/trello.com\/*" ], "options_page": "options.html", "background": { "scripts": [ "\/bg.js" ] }, "browser_action": { "default_icon": { "16": "icon.png", "32": "icon.png", "48": "icon.png" }, "default_title": "Trello Board", "default_popup": "popup.html" }, "content_scripts": [ { "all_frames": true, "css": [], "js": [ "jquery-3.2.1.min.js", "cscript.js" ], "matches": [ "https:\/\/trello.com\/*" ], "run_at": "document_end" } ] } |