Add to Calendar

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

Was ist Add to Calendar?

Add to Calendar ist eine Chrome-Erweiterung, die von Nabheet Madan entwickelt wurde, und ihr Hauptmerkmal ist "Create appointment in google calendar, copies the title of the page in subject and url in body automatically".

Erweiterungsscreenshots

screenshot

Add to Calendar-Erweiterungs-CRX-Datei herunterladen

Laden Sie Add to Calendar-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Add to Calendar Add to Calendar
ID oghjdgibcijneidbooifphlcjhnmffcj
Offizielle URL https://chromewebstore.google.com/detail/add-to-calendar/oghjdgibcijneidbooifphlcjhnmffcj
Beschreibung Create appointment in google calendar, copies the title of the page in subject and url in body automatically
Dateigröße 6.28 KB
Installationsanzahl 26
Aktuelle Version 1.0.0
Letztes Update 2018-09-22
Veröffentlichungsdatum 2018-09-22
Entwickler Nabheet Madan
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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"
        }
    ]
}