Inspect and view changes in JSON Formatter 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
{
"name": "JSON Formatter",
"version": "0.1",
"manifest_version": 3,
"description": "Makes JSON easy to read.",
"homepage_url": "https://tools.rupaksapkota.com.np/json-formatter",
"minimum_chrome_version": "88",
"icons": {
"32": "icons/32.png",
"128": "icons/128.png"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content.js"
],
"run_at": "document_end"
}
],
"permissions": [
"storage"
],
"host_permissions": [
"*://*/*",
"<all_urls>"
],
"options_ui": {
"page": "options/options.html",
"open_in_tab": false
},
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}