Makes JSON easy to read. Open source.
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"update_url": "https://clients2.google.com/service/update2/crx",
"name": "JSON Formatter",
"version": "0.10.0",
"manifest_version": 2,
"description": "Makes JSON easy to read. Open source.",
"homepage_url": "https://github.com/nikrolls/json-formatter",
"author": "Nik Rolls, Callum Locke",
"minimum_edge_version": "40",
"minimum_chrome_version": "21",
"icons": {
"32": "icons/32.png",
"128": "icons/128.png"
},
"background": {
"scripts": [
"js/background.js"
],
"persistent": false
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"js/content.js"
],
"run_at": "document_start"
}
],
"permissions": [
"storage",
"*://*/*",
"<all_urls>"
]
}