Styling Trello
This extension makes certain Trello forms more readable and therefore useful.
Что такое Styling Trello?
Styling Trello - это расширение Chrome, разработанное https://kainoto.com, и его основная функция - "This extension makes certain Trello forms more readable and therefore useful.".
Снимки экрана расширения
Скачать файл CRX расширения Styling Trello
Скачайте файлы расширений Styling Trello в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
For users of Trello who have hard time reading the cards descriptions and finding the important details. It is a first version and only adjusting few things on the cards. As for example, moving the buttons out of the main dialog window. Основная информация о расширении
| Название | |
| ID | igddgiapehjmgfiionknahkilcbglfpa |
| Официальный URL | https://chromewebstore.google.com/detail/styling-trello/igddgiapehjmgfiionknahkilcbglfpa |
| Описание | This extension makes certain Trello forms more readable and therefore useful. |
| Размер файла | 94.38 KB |
| Количество установок | 154 |
| Текущая Версия | 1.1 |
| Последнее Обновление | 2016-04-30 |
| Дата публикации | 2016-04-30 |
| Рейтинг | 5.00/5 Всего 2 оценок |
| Разработчик | https://kainoto.com |
| Электронная почта | [email protected] |
| Тип оплаты | free |
| Поддерживаемые языки | en-GB |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Styling Trello",
"description": "This extension makes certain Trello forms more readable and therefore useful.",
"author": "Kainoto",
"icons": {
"128": "icon-128.png",
"64": "icon-64.png",
"48": "icon-48.png",
"32": "icon-32.png",
"16": "icon-16.png"
},
"version": "1.1",
"permissions": [
"activeTab"
],
"background": {
"persistent": false,
"scripts": [
"bg.js"
],
"all_frames": true
},
"content_scripts": [
{
"matches": [
"https:\/\/*.trello.com\/*"
],
"css": [
"tstyle.css"
],
"js": [
"tstyle.js"
]
}
],
"browser_action": {
"default_icon": "icon.png",
"default_popup": "popup.html",
"default_title": "Styling (making readable) Trello"
}
} | |