Your notion.so workspace, with all the missing features.
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": 3,
"name": "NotionExtensions",
"version": "0.0.7",
"description": "Your notion.so workspace, with all the missing features.",
"icons": {
"512": "assets/icons/icon-512.png"
},
"content_scripts": [
{
"matches": [
"*://*.notion.so/*"
],
"js": [
"src/entryPoint.js"
]
}
],
"action": {
"default_icon": {
"512": "assets/icons/icon-512.png"
},
"default_popup": "src/popup.html",
"default_title": "NotionExtensions"
},
"web_accessible_resources": [
{
"resources": [
"/src/index.js"
],
"matches": [
"*://*.notion.so/*"
]
}
]
}