Hide images in trello

This extension adds button to toggle all cover images in Trello lists.

Что такое Hide images in trello?

Hide images in trello - это расширение Chrome, разработанное streumme, и его основная функция - "This extension adds button to toggle all cover images in Trello lists.".

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

screenshot

Скачать файл CRX расширения Hide images in trello

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

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

                        In order to get a clean view of a cluttered trello board, this plugin toggles all cover images by clicking a button in the toolbar.                    

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

Название Hide images in trello Hide images in trello
ID opaoofkloohknnanekncgnpcknohcbpj
Официальный URL https://chromewebstore.google.com/detail/hide-images-in-trello/opaoofkloohknnanekncgnpcknohcbpj
Описание This extension adds button to toggle all cover images in Trello lists.
Размер файла 44.63 KB
Количество установок 83
Текущая Версия 1.0
Последнее Обновление 2019-04-10
Дата публикации 2019-04-10
Рейтинг 2.67/5 Всего 3 оценок
Разработчик streumme
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Hide images in trello",
    "description": "This extension adds button to toggle all cover images in Trello lists.",
    "version": "1.0",
    "author": "Johan Str\u00f6m",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/trello.com\/b\/*"
            ],
            "js": [
                "injector.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "jquery.js",
        "imagehide.js",
        "imagehide.css"
    ],
    "permissions": [
        "https:\/\/trello.com\/b\/*"
    ]
}