Notion - Add to calendar

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

What is Notion - Add to calendar?

Notion - Add to calendar is a Chrome extension developed by https://hugolevet.fr, and its main feature is "This extension create a link for save notion event in google calendar".

Extension Screenshots

screenshot

Download Notion - Add to calendar Extension CRX File

Download Notion - Add to calendar extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

Extension Basic Information

Name Notion - Add to calendar Notion - Add to calendar
ID fmopabaabflalnnhjknhemmpenfjlldh
Official URL https://chromewebstore.google.com/detail/notion-add-to-calendar/fmopabaabflalnnhjknhemmpenfjlldh
Description This extension create a link for save notion event in google calendar
File Size 14.5 KB
Installation Count 1,846
Current Version 2.1.0
Last Updated 2024-02-20
Publish Date 2021-09-10
Rating 2.00/5 Total 6 Ratings
Developer https://hugolevet.fr
Email [email protected]
Payment Type free
Extension Website https://hugolevet.fr/notion-add-to-calendar/
Privacy Policy Page URL https://hugolevet.fr/p/disable-cookies-privacy.html
Supported Languages 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"
    }
}