Inspect and view changes in EDGE Assistant 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
{
"manifest_version": 3,
"name": "EDGE Assistant",
"description": "An extension to fill in EDGE database cost input forms.",
"version": "2.1",
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx",
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
},
"content_scripts": [
{
"js": [
"eacontent.js"
],
"matches": [
"https://edgedemo.edge.nhs.uk/*",
"https://www.edge.nhs.uk/*",
"https://nz.edge-clinical.org/*",
"https://nzdemo.edge-clinical.org/*"
]
}
],
"host_permissions": [
"http://edgedemo.edge.nhs.uk/",
"https://www.edge.nhs.uk/",
"https://edgedemo.edge.nhs.uk/",
"https://nz.edge-clinical.org/",
"https://nzdemo.edge-clinical.org/"
],
"permissions": [
"scripting",
"storage"
],
"options_page": "options.html",
"action": {
"default_popup": "popup.html"
}
}