Updated to print service power shell
This commit is contained in:
59
windows_print_service/chrome_extension/manifest.json
Normal file
59
windows_print_service/chrome_extension/manifest.json
Normal file
@@ -0,0 +1,59 @@
|
||||
{
|
||||
"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:*/*"
|
||||
]
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user