Trello Feed
Have a full visibility of what is happening in Trello.
Что такое Trello Feed?
Trello Feed - это расширение Chrome, разработанное ynazarov, и его основная функция - "Have a full visibility of what is happening in Trello.".
Снимки экрана расширения
Скачать файл CRX расширения Trello Feed
Скачайте файлы расширений Trello Feed в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Trello Feed will group updates from all your boards and show them in one place so that you wouldn't miss a thing. It will notify you if new updates available, so you can quickly respond to a comment or a task.
Основная информация о расширении
Название | |
ID | obincefhnenglgklhbehgeeeccjpgccn |
Официальный URL | https://chrome.google.com/webstore/detail/obincefhnenglgklhbehgeeeccjpgccn |
Описание | Have a full visibility of what is happening in Trello. |
Размер файла | 709 KB |
Количество установок | 75 |
Текущая Версия | 1.1.1 |
Последнее Обновление | 2017-11-01 |
Дата публикации | 2017-11-01 |
Рейтинг | 4.00/5 Всего 3 оценок |
Разработчик | ynazarov |
Тип оплаты | free |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Trello Feed", "version": "1.1.1", "description": "Have a full visibility of what is happening in Trello.", "icons": { "16": "icons\/16x16.png", "48": "icons\/48x48.png", "128": "icons\/128x128.png" }, "background": { "page": "html\/background.html" }, "content_scripts": [ { "matches": [ "https:\/\/trello.com\/*" ], "js": [ "src\/inject.js" ], "css": [ "css\/modifiedBoards.css" ] } ], "web_accessible_resources": [ "html\/app.html", "icons\/boards.white.svg", "icons\/feed.white.svg" ], "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'", "browser_action": [], "permissions": [ "https:\/\/trello.com\/*", "https:\/\/www.google-analytics.com\/", "storage", "tabs", "alarms" ] } |