MedPro Extension: Simplify Your Content Integration
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": "MedPro",
"version": "1.11",
"description": "MedPro Extension: Simplify Your Content Integration ",
"permissions": [
"activeTab",
"scripting",
"storage",
"tabs"
],
"host_permissions": [
"<all_urls>",
"https://dev.avayl.tech/*",
"https://app.avayl.tech/*"
],
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "icons/16x16.png",
"32": "icons/32x32.png",
"48": "icons/48x48.png",
"128": "icons/128x128.png"
}
},
"content_scripts": [
{
"matches": [
"http://dev.avayl.tech/*",
"https://dev.avayl.tech/*",
"http://app.avayl.tech/*",
"https://app.avayl.tech/*"
],
"js": [
"tokenDetect.js"
],
"run_at": "document_idle"
},
{
"matches": [
"http://*/*",
"https://*/*"
],
"js": [
"pdfDetect.js"
],
"run_at": "document_idle"
}
],
"background": {
"service_worker": "background.js"
},
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'; connect-src *"
},
"web_accessible_resources": [
{
"resources": [
"pdf.js/build/pdf.js",
"pdf.js/build/pdf.worker.js"
],
"matches": [
"<all_urls>"
]
}
]
}