Nirvana HQ Add to Calendar Feature

This extension will add an context option 'Add to Google Calender' on right click context of every item.

Что такое Nirvana HQ Add to Calendar Feature?

Nirvana HQ Add to Calendar Feature - это расширение Chrome, разработанное Matt, и его основная функция - "This extension will add an context option 'Add to Google Calender' on right click context of every item.".

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

screenshot

Скачать файл CRX расширения Nirvana HQ Add to Calendar Feature

Скачайте файлы расширений Nirvana HQ Add to Calendar Feature в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

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

                        This extension will give you the ability to right click on a TODO item in the webapp Nirvana HQ and add that item to your google calendar.

You must be logged into google calendar for this to work.                    

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

Название Nirvana HQ Add to Calendar Feature Nirvana HQ Add to Calendar Feature
ID enfogplbopdmdjhnigjaijcnacjlcpme
Официальный URL https://chrome.google.com/webstore/detail/nirvana-hq-add-to-calenda/enfogplbopdmdjhnigjaijcnacjlcpme
Описание This extension will add an context option 'Add to Google Calender' on right click context of every item.
Размер файла 132 KB
Количество установок 499
Текущая Версия 0.0.0.3
Последнее Обновление 2016-12-08
Дата публикации 2016-12-08
Рейтинг 3.64/5 Всего 11 оценок
Разработчик Matt
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Nirvana HQ Add to Calendar Feature",
    "version": "0.0.0.3",
    "description": "This extension will add an context option 'Add to Google Calender' on right click context of every item.",
    "background": {
        "page": "background.html"
    },
    "manifest_version": 2,
    "browser_action": {
        "name": "Manipulate DOM",
        "icons": [
            "icon.png"
        ],
        "default_icon": "icon.png"
    },
    "commands": {
        "random": {
            "suggested_key": {
                "default": "Alt+Shift+L"
            },
            "description": "Load a random link"
        }
    },
    "content_scripts": [
        {
            "js": [
                "jquery.min.js",
                "background.js"
            ],
            "matches": [
                "https:\/\/focus.nirvanahq.com\/"
            ]
        }
    ],
    "permissions": [
        "activeTab"
    ]
}