A extention open Notion Links (https://www.notion.so/*) in Notion Desktop.
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"update_url": "https://clients2.google.com/service/update2/crx",
"manifest_version": 2,
"name": "Open in Notion Desktop",
"description": "A extention open Notion Links (https://www.notion.so/*) in Notion Desktop.",
"version": "1.0.0",
"icons": {
"16": "/icons/16.png",
"48": "/icons/48.png",
"128": "/icons/128.png"
},
"background": {
"scripts": [
"background.js"
],
"persistent": true
},
"permissions": [
"webRequest",
"webRequestBlocking",
"https://www.notion.so/*"
]
}