Add to Calendar

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

O que é Add to Calendar?

Add to Calendar é uma extensão do Chrome desenvolvida por Nabheet Madan, e sua principal característica é "Create appointment in google calendar, copies the title of the page in subject and url in body automatically".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Add to Calendar

Baixe arquivos de extensão Add to Calendar no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Add to Calendar Add to Calendar
ID oghjdgibcijneidbooifphlcjhnmffcj
URL Oficial https://chromewebstore.google.com/detail/add-to-calendar/oghjdgibcijneidbooifphlcjhnmffcj
Descrição Create appointment in google calendar, copies the title of the page in subject and url in body automatically
Tamanho do Arquivo 6.28 KB
Contagem de Instalações 26
Versão Atual 1.0.0
Última Atualização 2018-09-22
Data de Publicação 2018-09-22
Desenvolvedor Nabheet Madan
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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"
        }
    ]
}