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
Eメール [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"
        }
    ]
}