59 lines
1.2 KiB
JSON
59 lines
1.2 KiB
JSON
{
|
|
"manifest_version": 3,
|
|
"name": "Quality Recticel Print Service",
|
|
"version": "1.0.0",
|
|
"description": "Silent PDF printing service for Quality Recticel 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 Recticel Print 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:*/*"
|
|
]
|
|
}
|
|
} |