Inspect and view changes in Nudge AI source codes across current and past versions
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": "Nudge AI",
"description": "Nudge's Chrome extension to integrate with your preferred EMR/EHR platforms.",
"version": "2.4.9",
"icons": {
"16": "icon/16.png",
"32": "icon/32.png",
"192": "icon/192.png",
"512": "icon/512.png"
},
"permissions": [
"activeTab",
"scripting",
"sidePanel",
"storage",
"tabs"
],
"host_permissions": [
"*://*/*"
],
"action": {
"default_icon": {
"16": "icon/16.png",
"32": "icon/32.png",
"192": "icon/192.png",
"512": "icon/512.png"
},
"default_title": "Open Side Panel"
},
"side_panel": {
"default_path": "sidepanel.html"
},
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"*://*/*"
],
"js": [
"content-scripts/content.js"
]
}
]
}