Trello Cleaner Design

Some improvements in Trello.com UI design, which allows to see cards more clear

Что такое Trello Cleaner Design?

Trello Cleaner Design - это расширение Chrome, разработанное https://uptimiza.com, и его основная функция - "Some improvements in Trello.com UI design, which allows to see cards more clear".

Снимки экрана расширения

screenshot
screenshot
screenshot

Скачать файл CRX расширения Trello Cleaner Design

Скачайте файлы расширений Trello Cleaner Design в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        Some improvements in Trello.com UI design, which allows to see cards more clear                    

Основная информация о расширении

Название Trello Cleaner Design Trello Cleaner Design
ID jpoeolmhikfpcbkmhdodedglnngoljad
Официальный URL https://chromewebstore.google.com/detail/trello-cleaner-design/jpoeolmhikfpcbkmhdodedglnngoljad
Описание Some improvements in Trello.com UI design, which allows to see cards more clear
Размер файла 43.51 KB
Количество установок 59
Текущая Версия 1.1
Последнее Обновление 2018-03-03
Дата публикации 2018-03-03
Рейтинг 4.33/5 Всего 3 оценок
Разработчик https://uptimiza.com
Электронная почта humanizing.internet@gmail.com
Тип оплаты free
Поддерживаемые языки es
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Trello Cleaner Design",
    "manifest_version": 2,
    "version": "1.1",
    "description": "Some improvements in Trello.com UI design, which allows to see cards more clear",
    "background": {
        "persistent": false,
        "scripts": [
            "jquery.min.js",
            "background.js"
        ]
    },
    "icons": {
        "16": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    },
    "browser_action": {
        "name": "Trello Cleaner Design",
        "icons": [
            "icon.png"
        ],
        "default_icon": "icon.png",
        "default_title": "Trello Cleaner Design",
        "default_popup": "popup.html"
    },
    "web_accessible_resources": [
        "trello.css",
        "trello_plus.css"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/trello.com\/*",
                "https:\/\/trello.com\/*"
            ],
            "js": [
                "jquery.min.js",
                "background.js"
            ]
        }
    ],
    "permissions": [
        "storage",
        "tabs",
        "background"
    ]
}