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
官方URL 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"
    }
}