Asana decorator

The extension adds styles for blockquotes, horizontal lines in task’s comments on asana.com

Что такое Asana decorator?

Asana decorator - это расширение Chrome, разработанное Nikita Slobozhaninov, и его основная функция - "The extension adds styles for blockquotes, horizontal lines in task’s comments on asana.com".

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

screenshot
screenshot
screenshot

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

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

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

                        1) You can use > characters for blockquoting.

> This is a blockquote

Lorem ipsum dolor sit amet...


2) You can produce a horizontal line by placing three or more hyphens on a line by themselves.

Lorem ipsum dolor sit amet...

---

Excepteur sint occaecat cupidatat non proident....

3) You can quickly answer with blockquotes using button "REPLY"                    

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

Название Asana decorator Asana decorator
ID nnoeneakknmdclilkfjpkhgaadeabpic
Официальный URL https://chrome.google.com/webstore/detail/asana-decorator/nnoeneakknmdclilkfjpkhgaadeabpic
Описание The extension adds styles for blockquotes, horizontal lines in task’s comments on asana.com
Размер файла 62.26 KB
Количество установок 41
Текущая Версия 2.3.0
Последнее Обновление 2020-10-18
Дата публикации 2019-10-01
Рейтинг 4.33/5 Всего 3 оценок
Разработчик Nikita Slobozhaninov
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Asana decorator",
    "description": "The extension adds styles for blockquotes, horizontal lines in task\u2019s comments on asana.com",
    "version": "2.3.0",
    "icons": {
        "16": "images\/icon_16.png",
        "32": "images\/icon_32.png",
        "48": "images\/icon_48.png",
        "64": "images\/icon_64.png",
        "128": "images\/icon_128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/app.asana.com\/*",
                "http:\/\/app.asana.com\/*"
            ],
            "js": [
                "content_scripts\/content_scripts.js"
            ],
            "css": [
                "content_scripts\/content_scripts.css"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "activeTab"
    ]
}