{ "manifest_version": 3, "name": "Quality Label Printing Service", "version": "1.0.0", "description": "Simple silent PDF printing for Quality Label Printing application", "permissions": [ "activeTab", "storage", "downloads", "tabs", "scripting" ], "host_permissions": [ "http://localhost:*/*", "https://localhost:*/*", "http://*/*", "https://*/*" ], "background": { "service_worker": "background.js" }, "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:*/*" ] } }