Connect icMED medical platform to medical devices, smartcards, cryptographic tokens, fiscal printers
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"update_url": "https://clients2.google.com/service/update2/crx",
"manifest_version": 3,
"name": "icMED Connector",
"description": "Connect icMED medical platform to medical devices, smartcards, cryptographic tokens, fiscal printers",
"version": "0.0.2.5",
"background": {
"service_worker": "worker.js",
"type": "module"
},
"host_permissions": [
"http://*.icmed.ro//*",
"https://*.icmed.ro//*",
"http://*.icmed.lt//*",
"https://*.icmed.lt//*",
"http://*.icmed.md//*",
"https://*.icmed.md//*",
"http://*.icmed.cz//*",
"https://*.icmed.cz//*",
"http://*.icmed.sk//*",
"https://*.icmed.sk//*"
],
"permissions": [
"tabs",
"storage"
],
"externally_connectable": {
"matches": [
"*://*.icmed.ro/*",
"*://*.icmed.lt/*",
"*://*.icmed.md/*",
"*://*.icmed.cz/*",
"*://*.icmed.sk/*"
]
},
"content_scripts": [
{
"matches": [
"*://*.icmed.ro/*",
"*://*.icmed.lt/*",
"*://*.icmed.md/*",
"*://*.icmed.cz/*",
"*://*.icmed.sk/*"
],
"all_frames": true,
"js": [
"content.js"
]
}
],
"web_accessible_resources": [
{
"resources": [
"clientScript.js"
],
"matches": [
"*://*.icmed.ro/*",
"*://*.icmed.lt/*",
"*://*.icmed.md/*",
"*://*.icmed.cz/*",
"*://*.icmed.sk/*"
]
}
],
"icons": {
"16": "icon16.png",
"32": "icon32.png",
"48": "icon48.png",
"128": "icon128.png"
}
}