Add to Calendar

Create appointment in google calendar, copies the title of the page in subject and url in body automatically

Что такое Add to Calendar?

Add to Calendar - это расширение Chrome, разработанное Nabheet Madan, и его основная функция - "Create appointment in google calendar, copies the title of the page in subject and url in body automatically".

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

screenshot

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

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

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

                        Add to calendar extension allows you create google calendar appointment. It automatically defaults the title of the appointment to the title of the page where you want to create appointment and add the URL of the page to the body of the event.  This will help in saving the manual copy/paste as well as person can check details later when reminder come.                    

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

Название Add to Calendar Add to Calendar
ID oghjdgibcijneidbooifphlcjhnmffcj
Официальный URL https://chromewebstore.google.com/detail/add-to-calendar/oghjdgibcijneidbooifphlcjhnmffcj
Описание Create appointment in google calendar, copies the title of the page in subject and url in body automatically
Размер файла 6.28 KB
Количество установок 26
Текущая Версия 1.0.0
Последнее Обновление 2018-09-22
Дата публикации 2018-09-22
Разработчик Nabheet Madan
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Add to Calendar",
    "version": "1.0.0",
    "description": "Create appointment in google calendar, copies the title of the page in subject and url in body automatically",
    "manifest_version": 2,
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "contextMenus",
        "tabs",
        "activeTab",
        "storage"
    ],
    "icons": {
        "16": "calendar.png",
        "48": "calendar.png",
        "128": "calendar.png"
    },
    "browser_action": {
        "default_icon": "calendar.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "contentscript.js"
            ],
            "run_at": "document_end"
        }
    ]
}