Add to Calendar

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

Qu'est-ce que Add to Calendar ?

Add to Calendar est une extension Chrome développée par Nabheet Madan, et sa fonction principale est "Create appointment in google calendar, copies the title of the page in subject and url in body automatically".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Add to Calendar

Téléchargez les fichiers d'extension Add to Calendar au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Add to Calendar Add to Calendar
ID oghjdgibcijneidbooifphlcjhnmffcj
URL Officiel https://chromewebstore.google.com/detail/add-to-calendar/oghjdgibcijneidbooifphlcjhnmffcj
Description Create appointment in google calendar, copies the title of the page in subject and url in body automatically
Taille du Fichier 6.28 KB
Nombre d'Installations 26
Version Actuelle 1.0.0
Dernière Mise à Jour 2018-09-22
Date de Publication 2018-09-22
Développeur Nabheet Madan
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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"
        }
    ]
}