Notion - Add to calendar
This extension create a link for save notion event in google calendar
Что такое Notion - Add to calendar?
Notion - Add to calendar - это расширение Chrome, разработанное https://hugolevet.fr, и его основная функция - "This extension create a link for save notion event in google calendar".
Снимки экрана расширения
Скачать файл CRX расширения Notion - Add to calendar
Скачайте файлы расширений Notion - Add to calendar в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
You can add simply notion's events in your calendar. For the moment, just google calendar is supported.
Основная информация о расширении
Название | Notion - Add to calendar |
ID | fmopabaabflalnnhjknhemmpenfjlldh |
Официальный URL | https://chromewebstore.google.com/detail/notion-add-to-calendar/fmopabaabflalnnhjknhemmpenfjlldh |
Описание | This extension create a link for save notion event in google calendar |
Размер файла | 14.5 KB |
Количество установок | 1,846 |
Текущая Версия | 2.1.0 |
Последнее Обновление | 2024-02-20 |
Дата публикации | 2021-09-10 |
Рейтинг | 2.00/5 Всего 6 оценок |
Разработчик | https://hugolevet.fr |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://hugolevet.fr/notion-add-to-calendar/ |
URL страницы политики конфиденциальности | https://hugolevet.fr/p/disable-cookies-privacy.html |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "version": "2.1.0", "name": "Notion - Add to calendar", "description": "This extension create a link for save notion event in google calendar", "offline_enabled": true, "icons": { "128": "icon.png" }, "content_scripts": [ { "matches": [ "https:\/\/www.notion.so\/*", "*:\/\/*.notion.site\/*" ], "js": [ "content.js" ], "run_at": "document_end" } ], "action": { "default_popup": "popup.html", "default_icon": { "128": "icon.png" } }, "background": { "service_worker": "background.js" } } |