Add to Calendar

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

Vad är Add to Calendar?

Add to Calendar är en Chrome-tillägg utvecklad av Nabheet Madan, och dess huvudfunktion är "Create appointment in google calendar, copies the title of the page in subject and url in body automatically".

Tilläggsskärmbilder

screenshot

Ladda ner Add to Calendar-förlängningens CRX-fil

Ladda ner Add to Calendar-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Add to Calendar Add to Calendar
ID oghjdgibcijneidbooifphlcjhnmffcj
Officiell webbadress https://chromewebstore.google.com/detail/add-to-calendar/oghjdgibcijneidbooifphlcjhnmffcj
Beskrivning Create appointment in google calendar, copies the title of the page in subject and url in body automatically
Filstorlek 6.28 KB
Antal Installationer 26
Aktuell Version 1.0.0
Senast Uppdaterad 2018-09-22
Publiceringsdatum 2018-09-22
Utvecklare Nabheet Madan
E-post [email protected]
Betalningssätt free
Stödda Språk 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"
        }
    ]
}