Notion Compte Rendu!
Easily add Notion pages to your Calendar events
Qu'est-ce que Notion Compte Rendu! ?
Notion Compte Rendu! est une extension Chrome développée par younes.benallal.06, et sa fonction principale est "Easily add Notion pages to your Calendar events".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Notion Compte Rendu!
Téléchargez les fichiers d'extension Notion Compte Rendu! 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
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.
Informations de Base sur l'Extension
Nom | Notion Compte Rendu! |
ID | ofandcgoackjlngfmlficfnckpicedka |
URL Officiel | https://chromewebstore.google.com/detail/notion-compte-rendu/ofandcgoackjlngfmlficfnckpicedka |
Description | Easily add Notion pages to your Calendar events |
Taille du Fichier | 396 KB |
Nombre d'Installations | 76 |
Version Actuelle | 0.0.7 |
Dernière Mise à Jour | 2023-04-05 |
Date de Publication | 2021-11-04 |
Évaluation | 1.50/5 Total 2 Évaluations |
Développeur | younes.benallal.06 |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://notionist.app |
Langues Prises en Charge | 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'" } |