Notion Compte Rendu!
Easily add Notion pages to your Calendar events
What is Notion Compte Rendu!?
Notion Compte Rendu! is a Chrome extension developed by younes.benallal.06, and its main feature is "Easily add Notion pages to your Calendar events".
Extension Screenshots
Download Notion Compte Rendu! Extension CRX File
Download Notion Compte Rendu! 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
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.
Extension Basic Information
Name | Notion Compte Rendu! |
ID | ofandcgoackjlngfmlficfnckpicedka |
Official URL | https://chromewebstore.google.com/detail/notion-compte-rendu/ofandcgoackjlngfmlficfnckpicedka |
Description | Easily add Notion pages to your Calendar events |
File Size | 396 KB |
Installation Count | 76 |
Current Version | 0.0.7 |
Last Updated | 2023-04-05 |
Publish Date | 2021-11-04 |
Rating | 1.50/5 Total 2 Ratings |
Developer | younes.benallal.06 |
[email protected] | |
Payment Type | free |
Extension Website | https://notionist.app |
Supported Languages | 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'" } |