Open in Notion

Open share links in your desktop app.

Qu'est-ce que Open in Notion ?

Open in Notion est une extension Chrome développée par Sergey Osokin, et sa fonction principale est "Open share links in your desktop app.".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Open in Notion

Téléchargez les fichiers d'extension Open in Notion au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Open in Notion Open in Notion
ID kjemindnkfgkkfdekkinfamjahhlemca
URL Officiel https://chromewebstore.google.com/detail/open-in-notion/kjemindnkfgkkfdekkinfamjahhlemca
Description Open share links in your desktop app.
Taille du Fichier 20.38 KB
Nombre d'Installations 10,000
Version Actuelle 0.1.5.6
Dernière Mise à Jour 2023-03-22
Date de Publication 2020-05-10
Évaluation 4.50/5 Total 14 Évaluations
Développeur Sergey Osokin
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/creold/open-in-notion
URL de la Page de Politique de Confidentialité https://sergosokin.notion.site/Privacy-Policy-952d713797e14c71a390143be0eef94a
Langues Prises en Charge 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
    }
}