Notion - Add to calendar

This extension create a link for save notion event in google calendar

Was ist Notion - Add to calendar?

Notion - Add to calendar ist eine Chrome-Erweiterung, die von https://hugolevet.fr entwickelt wurde, und ihr Hauptmerkmal ist "This extension create a link for save notion event in google calendar".

Erweiterungsscreenshots

screenshot

Notion - Add to calendar-Erweiterungs-CRX-Datei herunterladen

Laden Sie Notion - Add to calendar-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        You can add simply notion's events in your calendar.
For the moment, just google calendar is supported.                    

Grundlegende Informationen zur Erweiterung

Name Notion - Add to calendar Notion - Add to calendar
ID fmopabaabflalnnhjknhemmpenfjlldh
Offizielle URL https://chromewebstore.google.com/detail/notion-add-to-calendar/fmopabaabflalnnhjknhemmpenfjlldh
Beschreibung This extension create a link for save notion event in google calendar
Dateigröße 14.5 KB
Installationsanzahl 1,846
Aktuelle Version 2.1.0
Letztes Update 2024-02-20
Veröffentlichungsdatum 2021-09-10
Bewertung 2.00/5 Insgesamt 6 Bewertungen
Entwickler https://hugolevet.fr
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://hugolevet.fr/notion-add-to-calendar/
URL der Datenschutzrichtlinien-Seite https://hugolevet.fr/p/disable-cookies-privacy.html
Unterstützte Sprachen 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"
    }
}