Notion - Add to calendar

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

Vad är Notion - Add to calendar?

Notion - Add to calendar är en Chrome-tillägg utvecklad av https://hugolevet.fr, och dess huvudfunktion är "This extension create a link for save notion event in google calendar".

Tilläggsskärmbilder

screenshot

Ladda ner Notion - Add to calendar-förlängningens CRX-fil

Ladda ner Notion - Add to calendar-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

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

Grundläggande Information om Tillägg

Namn Notion - Add to calendar Notion - Add to calendar
ID fmopabaabflalnnhjknhemmpenfjlldh
Officiell webbadress https://chromewebstore.google.com/detail/notion-add-to-calendar/fmopabaabflalnnhjknhemmpenfjlldh
Beskrivning This extension create a link for save notion event in google calendar
Filstorlek 14.5 KB
Antal Installationer 1,846
Aktuell Version 2.1.0
Senast Uppdaterad 2024-02-20
Publiceringsdatum 2021-09-10
Betyg 2.00/5 Totalt 6 Betyg
Utvecklare https://hugolevet.fr
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://hugolevet.fr/notion-add-to-calendar/
URL till Sekretesspolicy Sidan https://hugolevet.fr/p/disable-cookies-privacy.html
Stödda Språk 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"
    }
}