Inspect and view changes in JsonEdit 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": "JsonEdit",
"version": "1.0",
"description": "A JSON formatting tool for Edge",
"author": "Yang Hao",
"permissions": [
"scripting"
],
"background": {
"service_worker": "background.js"
},
"icons": {
"16": "icons/JsonEdit16x16.png",
"32": "icons/JsonEdit32x32.png",
"48": "icons/JsonEdit48x48.png",
"64": "icons/JsonEdit64x64.png",
"128": "icons/JsonEdit128x128.png"
},
"action": {
"default_popup": "popup/popup.html"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"lib/jquery.min.js",
"content-scripts/content.js"
]
}
],
"web_accessible_resources": [
{
"resources": [
"images/*.jpg"
],
"matches": [
"<all_urls>"
]
}
],
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}