Notion - Add to calendar

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

Notion - Add to calendarคืออะไร?

Notion - Add to calendar เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://hugolevet.fr และคุณลักษณะหลักของมันคือ "This extension create a link for save notion event in google calendar"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Notion - Add to calendar

ดาวน์โหลดไฟล์ส่วนขยาย 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"
    }
}