Notion Compte Rendu!

Easily add Notion pages to your Calendar events

什麼是Notion Compte Rendu!?

Notion Compte Rendu!是由younes.benallal.06開發的Chrome擴展程式,該擴展的主要功能是“Easily add Notion pages to your Calendar events”。

擴展截圖

screenshot
screenshot

下載Notion Compte Rendu!擴展crx文件

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

擴展使用說明

                        Notion Compte Rendu! helps you link all your meeting notes with your events! Stop wasting time creating the same events in Notion and in Calendar. It automatically shares access to all the attendees of the meeting. No more hassle adding and maintaining people on each Notion.                    

擴展基本資訊

名稱 Notion Compte Rendu! Notion Compte Rendu!
ID ofandcgoackjlngfmlficfnckpicedka
官方網址 https://chromewebstore.google.com/detail/notion-compte-rendu/ofandcgoackjlngfmlficfnckpicedka
簡介 Easily add Notion pages to your Calendar events
檔案大小 396 KB
安裝次數 76
目前版本 0.0.7
更新時間 2023-04-05
上架時間 2021-11-04
評分 1.50/5 共 2 次評分
開發者 younes.benallal.06
電子郵箱 [email protected]
付費類型 free
擴展官網 https://notionist.app
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Notion Compte Rendu!",
    "homepage_url": "https:\/\/compte-rendu.vercel.app\/",
    "description": "Easily add Notion pages to your Calendar events",
    "version": "0.0.7",
    "default_locale": "en",
    "permissions": [
        "storage"
    ],
    "icons": {
        "16": "icons\/16.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    },
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/calendar.google.com\/*",
                "https:\/\/meet.google.com\/*",
                "http:\/\/localhost:3000\/",
                "https:\/\/compterendu-webapp.vercel.app\/"
            ],
            "js": [
                "js\/content-script.js"
            ]
        }
    ],
    "externally_connectable": {
        "matches": [
            "http:\/\/localhost:3000\/*",
            "https:\/\/compterendu-webapp.vercel.app\/*"
        ],
        "accept_tls_channel_id": true
    },
    "browser_action": {
        "default_popup": "popup.html",
        "default_title": "Compte Rendu!",
        "default_icon": {
            "19": "icons\/19.png",
            "38": "icons\/38.png"
        }
    },
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}