Notion Compte Rendu!
Easily add Notion pages to your Calendar events
Notion Compte Rendu!とは何ですか?
Notion Compte Rendu!はyounes.benallal.06によって開発されたChromeの拡張機能で、その主な機能は「Easily add Notion pages to your Calendar events」です。
拡張機能のスクリーンショット
Notion Compte Rendu!拡張機能のCRXファイルをダウンロード
Notion Compte Rendu!拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Notion Compte Rendu! helps you link all your meeting notes with your events! Stop wasting time creating the same events in Notion and in Calendar. It automatically shares access to all the attendees of the meeting. No more hassle adding and maintaining people on each Notion.
拡張機能の基本情報
名前 | Notion Compte Rendu! |
ID | ofandcgoackjlngfmlficfnckpicedka |
公式URL | https://chromewebstore.google.com/detail/notion-compte-rendu/ofandcgoackjlngfmlficfnckpicedka |
説明 | Easily add Notion pages to your Calendar events |
ファイルサイズ | 396 KB |
インストール数 | 76 |
現在のバージョン | 0.0.7 |
最終更新日 | 2023-04-05 |
公開日 | 2021-11-04 |
評価 | 1.50/5 合計 2 レビュー |
開発者 | younes.benallal.06 |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://notionist.app |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Notion Compte Rendu!", "homepage_url": "https:\/\/compte-rendu.vercel.app\/", "description": "Easily add Notion pages to your Calendar events", "version": "0.0.7", "default_locale": "en", "permissions": [ "storage" ], "icons": { "16": "icons\/16.png", "48": "icons\/48.png", "128": "icons\/128.png" }, "background": { "scripts": [ "js\/background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "https:\/\/calendar.google.com\/*", "https:\/\/meet.google.com\/*", "http:\/\/localhost:3000\/", "https:\/\/compterendu-webapp.vercel.app\/" ], "js": [ "js\/content-script.js" ] } ], "externally_connectable": { "matches": [ "http:\/\/localhost:3000\/*", "https:\/\/compterendu-webapp.vercel.app\/*" ], "accept_tls_channel_id": true }, "browser_action": { "default_popup": "popup.html", "default_title": "Compte Rendu!", "default_icon": { "19": "icons\/19.png", "38": "icons\/38.png" } }, "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'" } |