Notion Compte Rendu!

Easily add Notion pages to your Calendar events

Что такое Notion Compte Rendu!?

Notion Compte Rendu! - это расширение Chrome, разработанное younes.benallal.06, и его основная функция - "Easily add Notion pages to your Calendar events".

Снимки экрана расширения

screenshot
screenshot

Скачать файл CRX расширения Notion Compte Rendu!

Скачайте файлы расширений 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! 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'"
}