Files
zk-chat-extension/source/manifest.json
AtHeartEngineer 31d90e7f6f Initial commit
2022-07-12 20:49:32 -04:00

40 lines
838 B
JSON

{
"name": "Awesome Extension",
"version": "0.0.0",
"description": "An awesome new browser extension",
"homepage_url": "https://github.com/fregante/browser-extension-template",
"manifest_version": 3,
"minimum_chrome_version": "100",
"browser_specific_settings": {
"gecko": {
"id": "awesome-extension@notlmn.github.io",
"strict_min_version": "100.0"
}
},
"icons": {
"128": "icon.png"
},
"permissions": [
"storage"
],
"host_permissions": [
"https://github.com/*"
],
"content_scripts": [
{
"matches": [ "https://github.com/fregante/browser-extension-template/*" ],
"js": [ "content.js" ],
"css": [ "content.css" ],
"run_at": "document_end"
}
],
"options_ui": {
"browser_style": true,
"page": "options.html"
},
"background": {
"service_worker": "background.js",
"type": "module"
}
}