Notion Compte Rendu!

Easily add Notion pages to your Calendar events

Cos'è Notion Compte Rendu!?

Notion Compte Rendu! è un'estensione di Chrome sviluppata da younes.benallal.06, e la sua funzione principale è "Easily add Notion pages to your Calendar events".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Notion Compte Rendu!

Scarica i file di estensione Notion Compte Rendu! in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Notion Compte Rendu! Notion Compte Rendu!
ID ofandcgoackjlngfmlficfnckpicedka
URL Ufficiale https://chromewebstore.google.com/detail/notion-compte-rendu/ofandcgoackjlngfmlficfnckpicedka
Descrizione Easily add Notion pages to your Calendar events
Dimensione del File 396 KB
Conteggio Installazioni 76
Versione Corrente 0.0.7
Ultimo Aggiornamento 2023-04-05
Data di Pubblicazione 2021-11-04
Valutazione 1.50/5 Totale 2 Valutazioni
Sviluppatore younes.benallal.06
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://notionist.app
Lingue Supportate 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'"
}