D365FO Extenstion Tool for Browser.
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": "D365FO Browser Tool",
"version": "1.0",
"description": "D365FO Extenstion Tool for Browser.",
"permissions": [
"activeTab"
],
"background": {
"service_worker": "src/background.js"
},
"action": {
"default_popup": "src/popup/popup.html"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"src/content.js"
]
}
],
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}