Notion - Add to calendar
This extension create a link for save notion event in google calendar
Wat is Notion - Add to calendar?
Notion - Add to calendar is een Chrome-extensie ontwikkeld door https://hugolevet.fr, en de belangrijkste functie is "This extension create a link for save notion event in google calendar".
Extensie Screenshots
Download het CRX-bestand van de extensie Notion - Add to calendar
Download Notion - Add to calendar-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
You can add simply notion's events in your calendar. For the moment, just google calendar is supported.
Basisinformatie over de Extensie
Naam | Notion - Add to calendar |
ID | fmopabaabflalnnhjknhemmpenfjlldh |
Officiële URL | https://chromewebstore.google.com/detail/notion-add-to-calendar/fmopabaabflalnnhjknhemmpenfjlldh |
Beschrijving | This extension create a link for save notion event in google calendar |
Bestandsgrootte | 14.5 KB |
Aantal Installaties | 1,846 |
Huidige Versie | 2.1.0 |
Laatst Bijgewerkt | 2024-02-20 |
Publicatiedatum | 2021-09-10 |
Beoordeling | 2.00/5 Totaal 6 Beoordelingen |
Ontwikkelaar | https://hugolevet.fr |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://hugolevet.fr/notion-add-to-calendar/ |
URL van de Privacybeleid Pagina | https://hugolevet.fr/p/disable-cookies-privacy.html |
Ondersteunde Talen | 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" } } |