Right-Click to Calendar

選択したテキストをGoogleカレンダーに投稿できる拡張です。

What is Right-Click to Calendar?

Right-Click to Calendar is a Chrome extension developed by https://retrorocket.biz, and its main feature is "選択したテキストをGoogleカレンダーに投稿できる拡張です。".

Extension Screenshots

screenshot
screenshot
screenshot
screenshot
screenshot

Download Right-Click to Calendar Extension CRX File

Download Right-Click to Calendar extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        ブラウザ上でテキスト選択して右クリックすると、コンテキストメニューからGoogleカレンダーに予定を投稿することが出来ます。
選択したテキストに日付や場所がある場合、登録するカレンダーの日付を自動で設定します。
日付・予定の判別に使用する正規表現はユーザが編集可能です。

初回のみオプションページからOAuthによるアプリケーションの承認を行ってください。
Chromium, Edgeからでも使用可能です。(ベータ機能)
➡ オプションページ extension://femihkgadmhfmdlkjjfjcgleppfggadk/options.html

リリースノートは以下のURLをご参照ください。
https://github.com/retrorocket/Right-Click-to-Calendar/blob/main/doc/RELEASENOTE.md                    

Extension Basic Information

Name Right-Click to Calendar Right-Click to Calendar
ID femihkgadmhfmdlkjjfjcgleppfggadk
Official URL https://chromewebstore.google.com/detail/right-click-to-calendar/femihkgadmhfmdlkjjfjcgleppfggadk
Description 選択したテキストをGoogleカレンダーに投稿できる拡張です。
File Size 105 KB
Installation Count 7,616
Current Version 3.67
Last Updated 2024-01-08
Publish Date 2019-09-02
Rating 4.24/5 Total 17 Ratings
Developer https://retrorocket.biz
Email [email protected]
Payment Type free
Extension Website https://retrorocket.biz/right-click-to-calendar-app-page/
Supported Languages ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "background": {
        "service_worker": "background.js"
    },
    "icons": {
        "16": "icons\/16.png",
        "19": "icons\/19.png",
        "38": "icons\/38.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    },
    "name": "Right-Click to Calendar",
    "description": "\u9078\u629e\u3057\u305f\u30c6\u30ad\u30b9\u30c8\u3092Google\u30ab\u30ec\u30f3\u30c0\u30fc\u306b\u6295\u7a3f\u3067\u304d\u308b\u62e1\u5f35\u3067\u3059\u3002",
    "options_page": "options.html",
    "permissions": [
        "contextMenus",
        "identity",
        "storage"
    ],
    "version": "3.67",
    "manifest_version": 3,
    "oauth2": {
        "client_id": "94384066361-079ot4sjd46238ijfdm8do77786to6po.apps.googleusercontent.com",
        "scopes": [
            "https:\/\/www.googleapis.com\/auth\/calendar.events",
            "https:\/\/www.googleapis.com\/auth\/calendar.readonly"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "assets\/js\/content.js"
            ]
        }
    ]
}