Right-Click to Calendar

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

Qu'est-ce que Right-Click to Calendar ?

Right-Click to Calendar est une extension Chrome développée par https://retrorocket.biz, et sa fonction principale est "選択したテキストをGoogleカレンダーに投稿できる拡張です。".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Right-Click to Calendar

Téléchargez les fichiers d'extension Right-Click to Calendar au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

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

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

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

Informations de Base sur l'Extension

Nom Right-Click to Calendar Right-Click to Calendar
ID femihkgadmhfmdlkjjfjcgleppfggadk
URL Officiel https://chromewebstore.google.com/detail/right-click-to-calendar/femihkgadmhfmdlkjjfjcgleppfggadk
Description 選択したテキストをGoogleカレンダーに投稿できる拡張です。
Taille du Fichier 105 KB
Nombre d'Installations 7,616
Version Actuelle 3.67
Dernière Mise à Jour 2024-01-08
Date de Publication 2019-09-02
Évaluation 4.24/5 Total 17 Évaluations
Développeur https://retrorocket.biz
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://retrorocket.biz/right-click-to-calendar-app-page/
Langues Prises en Charge 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"
            ]
        }
    ]
}