Notion Compte Rendu!

Easily add Notion pages to your Calendar events

¿Qué es Notion Compte Rendu!?

Notion Compte Rendu! es una extensión de Chrome desarrollada por younes.benallal.06, y su función principal es "Easily add Notion pages to your Calendar events".

Capturas de Pantalla de la Extensión

screenshot
screenshot

Descargar Archivo CRX de la Extensión Notion Compte Rendu!

Descarga archivos de extensión Notion Compte Rendu! en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre Notion Compte Rendu! Notion Compte Rendu!
ID ofandcgoackjlngfmlficfnckpicedka
URL Oficial https://chromewebstore.google.com/detail/notion-compte-rendu/ofandcgoackjlngfmlficfnckpicedka
Descripción Easily add Notion pages to your Calendar events
Tamaño del Archivo 396 KB
Cantidad de Instalaciones 76
Versión Actual 0.0.7
Última Actualización 2023-04-05
Fecha de Publicación 2021-11-04
Calificación 1.50/5 Total de 2 Calificaciones
Desarrollador younes.benallal.06
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://notionist.app
Idiomas Soportados 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'"
}