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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension create a link for save notion event in google calendar"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Notion - Add to calendar एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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"
    }
}