Calendar Location Helper

Modify Google Calendar to help pick locations of a map

Что такое Calendar Location Helper?

Calendar Location Helper - это расширение Chrome, разработанное roopak.v, и его основная функция - "Modify Google Calendar to help pick locations of a map".

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

screenshot

Скачать файл CRX расширения Calendar Location Helper

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

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

                        Very simple app that allows you to select places for meetings on Google Calendar using Google Maps.

The advantage is that if you use the addresses generated by this, it is most likely good enough for Google Now to notify you "n minutes" before it is time to leave.                    

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

Название Calendar Location Helper Calendar Location Helper
ID gepgdhgppljdcdohapjpjoiodhlmgjgb
Официальный URL https://chrome.google.com/webstore/detail/calendar-location-helper/gepgdhgppljdcdohapjpjoiodhlmgjgb
Описание Modify Google Calendar to help pick locations of a map
Размер файла 99.05 KB
Количество установок 10
Текущая Версия 0.0.1
Последнее Обновление 2013-11-17
Дата публикации 2013-11-17
Рейтинг 3.00/5 Всего 1 оценок
Разработчик roopak.v
Тип оплаты free
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Calendar Location Helper",
    "version": "0.0.1",
    "description": "Modify Google Calendar to help pick locations of a map",
    "browser_action": {
        "name": "Manipulate DOM",
        "icons": [
            "icon.png"
        ],
        "default_icon": "icon.png"
    },
    "web_accessible_resources": [
        "jquery.min.map",
        "marker.jpg"
    ],
    "content_scripts": [
        {
            "js": [
                "jquery.min.js",
                "background.js"
            ],
            "matches": [
                "http:\/\/*.google.com\/calendar*",
                "https:\/\/*.google.com\/calendar*"
            ],
            "run_at": "document_start"
        }
    ]
}