Add to Calendar

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

什麼是Add to Calendar?

Add to Calendar是由Nabheet Madan開發的Chrome擴展程式,該擴展的主要功能是“Create appointment in google calendar, copies the title of the page in subject and url in body automatically”。

擴展截圖

screenshot

下載Add to Calendar擴展crx文件

下載Add to Calendar擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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.                    

擴展基本資訊

名稱 Add to Calendar Add to Calendar
ID oghjdgibcijneidbooifphlcjhnmffcj
官方網址 https://chromewebstore.google.com/detail/add-to-calendar/oghjdgibcijneidbooifphlcjhnmffcj
簡介 Create appointment in google calendar, copies the title of the page in subject and url in body automatically
檔案大小 6.28 KB
安裝次數 26
目前版本 1.0.0
更新時間 2018-09-22
上架時間 2018-09-22
開發者 Nabheet Madan
電子郵箱 [email protected]
付費類型 free
支援的語言 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"
        }
    ]
}