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
官方URL 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"
        }
    ]
}