notion-enhancer/extension/manifest.json
dragonwocky 68ae14d967 basic script loading system
// to investigate: will the module approach break things when porting back to desktop
2021-04-12 00:19:24 +10:00

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/*"]
}