Files
KoalaSync/extension/manifest.base.json
T
2026-07-16 09:51:25 +00:00

48 lines
931 B
JSON

{
"manifest_version": 3,
"default_locale": "en",
"name": "__MSG_appName__",
"short_name": "KoalaSync",
"version": "2.6.4",
"description": "__MSG_appDesc__",
"permissions": [
"storage",
"tabs",
"scripting",
"alarms",
"activeTab",
"notifications"
],
"host_permissions": [
"<all_urls>"
],
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "icons/icon16.png",
"32": "icons/icon32.png",
"48": "icons/icon48.png",
"96": "icons/icon96.png",
"128": "icons/icon128.png"
}
},
"content_scripts": [
{
"matches": [
"https://sync.koalastuff.net/*"
],
"js": [
"bridge.js"
],
"run_at": "document_start"
}
],
"icons": {
"16": "icons/icon16.png",
"32": "icons/icon32.png",
"48": "icons/icon48.png",
"96": "icons/icon96.png",
"128": "icons/icon128.png"
}
}