Notion - Add to calendar
This extension create a link for save notion event in google calendar
Notion - Add to calendarとは何ですか?
Notion - Add to calendarはhttps://hugolevet.frによって開発されたChromeの拡張機能で、その主な機能は「This extension create a link for save notion event in google calendar」です。
拡張機能のスクリーンショット
Notion - Add to calendar拡張機能のCRXファイルをダウンロード
Notion - Add to calendar拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
You can add simply notion's events in your calendar. For the moment, just google calendar is supported.
拡張機能の基本情報
名前 | Notion - Add to calendar |
ID | fmopabaabflalnnhjknhemmpenfjlldh |
公式URL | https://chromewebstore.google.com/detail/notion-add-to-calendar/fmopabaabflalnnhjknhemmpenfjlldh |
説明 | This extension create a link for save notion event in google calendar |
ファイルサイズ | 14.5 KB |
インストール数 | 1,846 |
現在のバージョン | 2.1.0 |
最終更新日 | 2024-02-20 |
公開日 | 2021-09-10 |
評価 | 2.00/5 合計 6 レビュー |
開発者 | https://hugolevet.fr |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://hugolevet.fr/notion-add-to-calendar/ |
プライバシーポリシーページのURL | https://hugolevet.fr/p/disable-cookies-privacy.html |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "version": "2.1.0", "name": "Notion - Add to calendar", "description": "This extension create a link for save notion event in google calendar", "offline_enabled": true, "icons": { "128": "icon.png" }, "content_scripts": [ { "matches": [ "https:\/\/www.notion.so\/*", "*:\/\/*.notion.site\/*" ], "js": [ "content.js" ], "run_at": "document_end" } ], "action": { "default_popup": "popup.html", "default_icon": { "128": "icon.png" } }, "background": { "service_worker": "background.js" } } |