Data is synced from the Chrome Web Store. View the official store page for the most current information.
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "JSON Formatter and Viewer",
"description": "Instantly transform raw JSON into a beautifully structured and color-coded format.",
"version": "1.0",
"action": {
"default_icon": ".\/icons\/256x256.png",
"default_popup": "popup.html"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content_script.js"
]
}
],
"permissions": [
"storage"
],
"web_accessible_resources": [
{
"resources": [
"*.js",
"*.css",
"*.html"
],
"matches": [
"<all_urls>"
]
}
],
"icons": {
"16": ".\/icons\/16x16.png",
"32": ".\/icons\/32x32.png",
"48": ".\/icons\/48x48.png",
"64": ".\/icons\/64x64.png",
"96": ".\/icons\/96x96.png",
"128": ".\/icons\/128x128.png",
"256": ".\/icons\/256x256.png"
}
}