Inspect and view changes in AltaVoice Denticon Bridge 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": "AltaVoice Denticon Bridge",
"description": "This extension bridges communication between AltaVoice Perio Charting and Denticon Practice Management System.",
"version": "1.0.1",
"icons": {
"16": "alta-voice-16.png",
"48": "alta-voice-48.png",
"128": "alta-voice-128.png"
},
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"https://*.denticon.com/*"
],
"js": [
"content.js"
],
"all_frames": true
}
],
"action": {
"default_icon": "alta-voice.png"
},
"permissions": [
"tabs",
"alarms"
]
}