Asana Responsive Improvements

Responsive style fixes for Asana. People use modern browsers with small windows! As a frontend-developer I'm obliged to take action.

Что такое Asana Responsive Improvements?

Asana Responsive Improvements - это расширение Chrome, разработанное michaelcook.tech, и его основная функция - "Responsive style fixes for Asana. People use modern browsers with small windows! As a frontend-developer I'm obliged to take action.".

Скачать файл CRX расширения Asana Responsive Improvements

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

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

                        Responsive style fixes for Asana.
People use modern browsers with small windows!
As a frontend-developer I'm obliged to take action.

This is a non-for-profit extension simply to help with accessibility.                    

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

Название Asana Responsive Improvements Asana Responsive Improvements
ID ehphecedikcfedfdgjpcklijagnjodcf
Официальный URL https://chromewebstore.google.com/detail/asana-responsive-improvem/ehphecedikcfedfdgjpcklijagnjodcf
Описание Responsive style fixes for Asana. People use modern browsers with small windows! As a frontend-developer I'm obliged to take action.
Размер файла 154 KB
Количество установок 26
Текущая Версия 1.0.5
Последнее Обновление 2016-10-25
Дата публикации 2016-10-25
Разработчик michaelcook.tech
Тип оплаты free
Поддерживаемые языки en-GB
manifest.json
{
    "name": "Asana Responsive Improvements",
    "version": "1.0.5",
    "description": "Responsive style fixes for Asana. People use modern browsers with small windows! As a frontend-developer I'm obliged to take action.",
    "manifest_version": 2,
    "permissions": [
        "activeTab"
    ],
    "icons": {
        "16": "icon16.png",
        "19": "icon19.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "browser_action": {
        "name": "Manipulate DOM",
        "icons": {
            "16": "icon16.png",
            "19": "icon19.png",
            "48": "icon48.png",
            "128": "icon128.png"
        },
        "default_icon": {
            "16": "icon16.png",
            "19": "icon19.png",
            "48": "icon48.png",
            "128": "icon128.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/app.asana.com\/*"
            ],
            "css": [
                "style.css"
            ],
            "js": [
                "jquery.js"
            ]
        }
    ],
    "background": {
        "persistent": false,
        "scripts": [
            "jquery.js",
            "background.js"
        ]
    },
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx"
}