EpsilonSmart Browser Extension provides a means of communication between EpsilonSmart Web application and EpsilonSmart Client.
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"name": "EpsilonSmart Browser Extension",
"version": "1.2",
"manifest_version": 3,
"icons": {
"16": "esmart16.png",
"48": "esmart48.png",
"128": "esmart128.png"
},
"options_ui": {
"page": "options.html"
},
"author": "Epsilon Net SA",
"description": "EpsilonSmart Browser Extension provides a means of communication between EpsilonSmart Web application and EpsilonSmart Client.",
"background": {
"service_worker": "background.js"
},
"permissions": [
"storage"
],
"host_permissions": [
"<all_urls>"
],
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"browser-polyfill.js",
"contentScript.js"
]
}
],
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}