Add to Calendar

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

Co je Add to Calendar?

Add to Calendar je rozšíření Chrome vyvinuté Nabheet Madan, a jeho hlavní funkcí je „Create appointment in google calendar, copies the title of the page in subject and url in body automatically“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Add to Calendar

Stáhněte si soubory rozšíření Add to Calendar ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název Add to Calendar Add to Calendar
ID oghjdgibcijneidbooifphlcjhnmffcj
Oficiální URL https://chromewebstore.google.com/detail/add-to-calendar/oghjdgibcijneidbooifphlcjhnmffcj
Popis Create appointment in google calendar, copies the title of the page in subject and url in body automatically
Velikost souboru 6.28 KB
Počet instalací 26
Aktuální Verze 1.0.0
Poslední Aktualizace 2018-09-22
Datum Vydání 2018-09-22
Vývojář Nabheet Madan
E-mail [email protected]
Typ Platby free
Podporované Jazyky 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"
        }
    ]
}