Notion - Add to calendar

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

Co to jest Notion - Add to calendar?

Notion - Add to calendar to rozszerzenie Chrome opracowane przez https://hugolevet.fr, a jego główną funkcją jest „This extension create a link for save notion event in google calendar”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Notion - Add to calendar

Pobierz pliki rozszerzeń Notion - Add to calendar w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

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

Podstawowe informacje o rozszerzeniu

Nazwa Notion - Add to calendar Notion - Add to calendar
ID fmopabaabflalnnhjknhemmpenfjlldh
Oficjalny URL https://chromewebstore.google.com/detail/notion-add-to-calendar/fmopabaabflalnnhjknhemmpenfjlldh
Opis This extension create a link for save notion event in google calendar
Rozmiar pliku 14.5 KB
Liczba instalacji 1,846
Aktualna Wersja 2.1.0
Ostatnia Aktualizacja 2024-02-20
Data Publikacji 2021-09-10
Ocena 2.00/5 Łącznie 6 Oceny
Deweloper https://hugolevet.fr
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://hugolevet.fr/notion-add-to-calendar/
Adres URL Strony Polityki Prywatności https://hugolevet.fr/p/disable-cookies-privacy.html
Obsługiwane Języki 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"
    }
}