Files
binect-chrome/public/manifest.json
tegwick 0be7b56506 Fix: Add default_locale to manifest for Chrome extension compatibility
Added 'default_locale': 'en' to manifest.json to resolve Chrome error
when loading extension with _locales directory.

Error was: 'Lokalisierung wurde verwendet, in der Manifest-Datei war
jedoch kein Wert für default_locale angegeben'

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
2026-01-13 00:49:32 +01:00

34 lines
757 B
JSON

{
"manifest_version": 3,
"name": "BinectChrome",
"version": "1.0.0",
"description": "Send PDFs from cloud applications directly to Binect for physical mail delivery",
"default_locale": "en",
"permissions": [
"downloads",
"storage"
],
"host_permissions": [
"https://api.binect.de/*"
],
"background": {
"service_worker": "background.js",
"type": "module"
},
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "icons/icon-16.png",
"32": "icons/icon-32.png",
"48": "icons/icon-48.png",
"128": "icons/icon-128.png"
}
},
"icons": {
"16": "icons/icon-16.png",
"32": "icons/icon-32.png",
"48": "icons/icon-48.png",
"128": "icons/icon-128.png"
}
}