Add to Calendar

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

Apa itu Add to Calendar?

Add to Calendar adalah ekstensi Chrome yang dikembangkan oleh Nabheet Madan, dan fitur utamanya adalah "Create appointment in google calendar, copies the title of the page in subject and url in body automatically".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Add to Calendar

Unduh file ekstensi Add to Calendar dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Add to Calendar Add to Calendar
ID oghjdgibcijneidbooifphlcjhnmffcj
URL Resmi https://chromewebstore.google.com/detail/add-to-calendar/oghjdgibcijneidbooifphlcjhnmffcj
Deskripsi Create appointment in google calendar, copies the title of the page in subject and url in body automatically
Ukuran File 6.28 KB
Jumlah Instalasi 26
Versi Saat Ini 1.0.0
Terakhir Diperbarui 2018-09-22
Tanggal Publikasi 2018-09-22
Pengembang Nabheet Madan
Email [email protected]
Tipe Pembayaran free
Bahasa yang Didukung 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"
        }
    ]
}