Open in Notion

Open share links in your desktop app.

Open in Notion क्या है?

Open in Notion Sergey Osokin द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Open share links in your desktop app."।

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        Automaticaly opens all share links in the your desktop app (Mac OS, Windows). 
This is an unofficial extension.

Usage:
1. Download desktop app: https://www.notion.so/desktop
2. Install extension
3. After the first redirect links to the Notion desktop, remember to check "Always open these types of links in the associated app" to not be asked again.
    Notice: Restore the "Always open these types of links in the associated app" >> https://superuser.com/a/1518982
4. Enable tab auto-close ONLY if you have activated "Always open these types of links in the associated app".

Click on the extension icon to toggle on/off it. Right click and click on "Options" to access more settings.                    

एक्सटेंशन की मूल जानकारी

नाम Open in Notion Open in Notion
ID kjemindnkfgkkfdekkinfamjahhlemca
आधिकारिक URL https://chromewebstore.google.com/detail/open-in-notion/kjemindnkfgkkfdekkinfamjahhlemca
विवरण Open share links in your desktop app.
फ़ाइल का आकार 20.38 KB
स्थापना संख्या 10,000
वर्तमान संस्करण 0.1.5.6
अंतिम अपडेट 2023-03-22
प्रकाशन तिथि 2020-05-10
रेटिंग 4.50/5 कुल 14 रेटिंग्स
डेवलपर Sergey Osokin
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/creold/open-in-notion
गोपनीयता नीति पृष्ठ URL https://sergosokin.notion.site/Privacy-Policy-952d713797e14c71a390143be0eef94a
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Open in Notion",
    "version": "0.1.5.6",
    "description": "Open share links in your desktop app.",
    "icons": {
        "128": "icons\/icon-ext-128.png",
        "16": "icons\/icon-ext-16.png",
        "48": "icons\/icon-ext-48.png"
    },
    "background": {
        "service_worker": "js\/background.js"
    },
    "action": {
        "default_icon": {
            "128": "icons\/icon-on-128.png",
            "16": "icons\/icon-on-16.png",
            "32": "icons\/icon-on-32.png",
            "48": "icons\/icon-on-48.png"
        },
        "default_title": "Open in Notion"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.notion.so\/*"
            ],
            "js": [
                "js\/content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "host_permissions": [
        "*:\/\/*.notion.so\/*"
    ],
    "permissions": [
        "storage"
    ],
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    }
}