Notion - Add to calendar

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

什麼是Notion - Add to calendar?

Notion - Add to calendar是由https://hugolevet.fr開發的Chrome擴展程式,該擴展的主要功能是“This extension create a link for save notion event in google calendar”。

擴展截圖

screenshot

下載Notion - Add to calendar擴展crx文件

下載Notion - Add to calendar擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

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

擴展基本資訊

名稱 Notion - Add to calendar Notion - Add to calendar
ID fmopabaabflalnnhjknhemmpenfjlldh
官方網址 https://chromewebstore.google.com/detail/notion-add-to-calendar/fmopabaabflalnnhjknhemmpenfjlldh
簡介 This extension create a link for save notion event in google calendar
檔案大小 14.5 KB
安裝次數 1,846
目前版本 2.1.0
更新時間 2024-02-20
上架時間 2021-09-10
評分 2.00/5 共 6 次評分
開發者 https://hugolevet.fr
電子郵箱 [email protected]
付費類型 free
擴展官網 https://hugolevet.fr/notion-add-to-calendar/
隱私政策頁面URL https://hugolevet.fr/p/disable-cookies-privacy.html
支援的語言 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"
    }
}