hotpocket/services/extension/src/manifest/common.json
Tomek Wójcik 0ac2ca73ec
All checks were successful
CI / Checks (push) Successful in 3m58s
Release v25.10.13
2025-10-13 21:46:18 +02:00

33 lines
650 B
JSON

{
"manifest_version": 3,
"default_locale": "en",
"name": "__MSG_extension_name__",
"description": "__MSG_extension_description__",
"version": "25.10.13",
"icons": {
"16": "images/icon-16.png",
"32": "images/icon-32.png",
"48": "images/icon-48.png",
"64": "images/icon-64.png",
"96": "images/icon-96.png",
"128": "images/icon-128.png",
"256": "images/icon-256.png",
"512": "images/icon-512.png"
},
"content_scripts": [
{
"js": [
"content-bundle.js"
],
"matches": [
"<all_urls>"
]
}
],
"permissions": [
"storage",
"activeTab",
"tabs"
]
}