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 |
电子邮箱 | [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'" } |