Panel View for Asana
Panelized extension for Asana
Что такое Panel View for Asana?
Panel View for Asana - это расширение Chrome, разработанное dfrankland, и его основная функция - "Panelized extension for Asana".
Снимки экрана расширения
Скачать файл CRX расширения Panel View for Asana
Скачайте файлы расширений Panel View for Asana в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
This is a copy of Panel View for Keep created by Paul Eich (eichefam.net).
To send Asana to a panel you must click "Send to Panel" in the command bar at the bottom of Asana's page. For more info go to read the blog post by Paul here: http://bit.ly/panelupdate2_2
Like this extension? Buy Paul Eiche a cup of coffee!
http://bit.ly/paneldonate Основная информация о расширении
| Название | |
| ID | gkgknajjpoofcddkaclepablhigcpagd |
| Официальный URL | https://chromewebstore.google.com/detail/panel-view-for-asana/gkgknajjpoofcddkaclepablhigcpagd |
| Описание | Panelized extension for Asana |
| Размер файла | 39.75 KB |
| Количество установок | 77 |
| Текущая Версия | 2.4 |
| Последнее Обновление | 2014-12-18 |
| Дата публикации | 2014-12-18 |
| Рейтинг | 5.00/5 Всего 3 оценок |
| Разработчик | dfrankland |
| Тип оплаты | free |
| Официальный сайт расширения | http://snackcode.co |
| Поддерживаемые языки | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Panel View for Asana",
"description": "Panelized extension for Asana",
"version": "2.4",
"background": {
"scripts": [
"js\/background.js",
"js\/events.js"
]
},
"browser_action": {
"default_icon": "img\/icon_16.png"
},
"icons": {
"128": "img\/icon_128.png",
"16": "img\/icon_16.png"
},
"permissions": [
"tabs",
"https:\/\/app.asana.com\/*"
],
"content_scripts": [
{
"js": [
"js\/jquery-2.1.1.min.js"
],
"matches": [
"https:\/\/app.asana.com\/*"
],
"run_at": "document_start"
},
{
"js": [
"js\/asana-script.js"
],
"matches": [
"https:\/\/app.asana.com\/*"
],
"run_at": "document_end"
}
],
"manifest_version": 2
} | |