Files
quality_recticel/windows_print_service/chrome_extension/manifest.json
2025-09-22 20:34:15 +03:00

59 lines
1.2 KiB
JSON

{
"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": ["<all_urls>"],
"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": ["<all_urls>"]
}],
"externally_connectable": {
"matches": [
"http://localhost:*/*",
"https://localhost:*/*"
]
}
}