mirror of
https://github.com/AtHeartEngineer/zk-chat-extension.git
synced 2026-01-09 12:57:54 -05:00
40 lines
838 B
JSON
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"
|
|
}
|
|
}
|