Data is synced from the Chrome Web Store. View the official store page for the most current information.
Hand-picked for quality and usefulness
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "JSON Formatter",
"version": "0.8.1",
"manifest_version": 3,
"description": "Makes JSON easy to read. Open source.",
"homepage_url": "https:\/\/github.com\/callumlocke\/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"
},
{
"matches": [
"<all_urls>"
],
"js": [
"set-json-global.js"
],
"run_at": "document_idle",
"world": "MAIN"
}
],
"permissions": [
"storage"
],
"host_permissions": [
"*:\/\/*\/*",
"<all_urls>"
],
"options_ui": {
"page": "options\/options.html",
"open_in_tab": false
}
}