{ "manifest_version": 3, "name": "Quality Label Printing Service", "version": "1.0.0", "description": "Silent PDF printing service for Quality Label Printing application", "permissions": [ "activeTab", "storage", "nativeMessaging", "printingMetrics" ], "host_permissions": [ "http://localhost:*/*", "https://localhost:*/*" ], "background": { "service_worker": "background.js", "type": "module" }, "content_scripts": [{ "matches": [""], "js": ["content.js"], "run_at": "document_end" }], "action": { "default_popup": "popup.html", "default_title": "Quality Label Printing Service", "default_icon": { "16": "icons/icon16.png", "32": "icons/icon32.png", "48": "icons/icon48.png", "128": "icons/icon128.png" } }, "icons": { "16": "icons/icon16.png", "32": "icons/icon32.png", "48": "icons/icon48.png", "128": "icons/icon128.png" }, "web_accessible_resources": [{ "resources": ["content.js"], "matches": [""] }], "externally_connectable": { "matches": [ "http://localhost:*/*", "https://localhost:*/*" ] } }