mirror of
https://github.com/notion-enhancer/notion-enhancer.git
synced 2025-04-06 21:49:03 +00:00
// to investigate: will the module approach break things when porting back to desktop
35 lines
928 B
JSON
35 lines
928 B
JSON
{
|
|
"name": "notion-enhancer",
|
|
"author": "dragonwocky <thedragonring.bod@gmail.com> (https://dragonwocky.me/)",
|
|
"description": "an enhancer/customiser for the all-in-one productivity workspace notion.so",
|
|
"homepage_url": "https://notion-enhancer.github.io",
|
|
"version": "0.11.0",
|
|
"icons": {
|
|
"16": "icons/colour-x16.png",
|
|
"32": "icons/colour-x32.png",
|
|
"48": "icons/colour-x48.png",
|
|
"128": "icons/colour-x128.png"
|
|
},
|
|
"manifest_version": 3,
|
|
"background": {
|
|
"service_worker": "worker.js"
|
|
},
|
|
"action": {
|
|
"default_popup": "src/gui.html"
|
|
},
|
|
"web_accessible_resources": [
|
|
{
|
|
"resources": ["registry.json", "src/*", "repo/*"],
|
|
"matches": ["https://*.notion.so/*"]
|
|
}
|
|
],
|
|
"content_scripts": [
|
|
{
|
|
"matches": ["https://*.notion.so/*"],
|
|
"js": ["content-loader.js"]
|
|
}
|
|
],
|
|
"permissions": ["activeTab"],
|
|
"host_permissions": ["https://*.notion.so/*"]
|
|
}
|