extension/manifest.json
Timothy J. Baek 86d45a9f7e init
2024-05-22 21:11:01 -07:00

41 lines
690 B
JSON

{
"manifest_version": 3,
"name": "Open WebUI Extension",
"description": "Open WebUI",
"version": "1.0",
"icons": {
"16": "images/icon-16.png",
"32": "images/icon-32.png",
"48": "images/icon-48.png",
"128": "images/icon-128.png"
},
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content.js"
]
}
],
"host_permissions": [
"<all_urls>"
],
"web_accessible_resources": [
{
"resources": [
"extension/dist/*"
],
"matches": [
"<all_urls>"
]
}
],
"permissions": [
"storage"
]
}