Inspect and view changes in SOTA Cloud Bridge for Neem 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",
"name": "SOTA Cloud Bridge for Neem",
"description": "Bridges information to SOTA Cloud imaging from third-party Neem dental practice management software.",
"version": "1.6",
"manifest_version": 3,
"action": {
"default_title": "Click to bridge to SOTA Cloud Imaging.",
"default_popup": "popup.html",
"default_icon": "CloudIcon_128.png"
},
"permissions": [
"storage"
],
"content_scripts": [
{
"matches": [
"*://*.neem.software/*"
],
"js": [
"contentscript.js"
]
}
],
"background": {
"service_worker": "background.js"
},
"icons": {
"16": "CloudIcon_16.png",
"32": "CloudIcon_32.png",
"48": "CloudIcon_48.png",
"128": "CloudIcon_128.png"
},
"options_ui": {
"page": "options.html",
"open_in_tab": false
}
}