Inspect and view changes in JSON[B] Viewer 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[B] Viewer",
"version": "2.1.0",
"manifest_version": 2,
"author": "JSON[B] <support@jsonb.online>",
"description": "JSON[B] is a editor online web-based tool to view, edit, format, transform and diff JSON documents.",
"homepage_url": "https://www.jsonb.online",
"minimum_chrome_version": "21",
"icons": {
"16": "assets/icons/16.png",
"32": "assets/icons/32.png",
"128": "assets/icons/128.png"
},
"web_accessible_resources": [],
"offline_enabled": true,
"omnibox": {
"keyword": "jsonb"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"assets/js/viewer.js"
],
"run_at": "document_start"
}
],
"background": {
"scripts": [
"assets/js/background.js"
],
"persistent": true
},
"permissions": [
"*://*/*",
"<all_urls>",
"webRequest",
"webRequestBlocking"
],
"content_security_policy": "script-src 'self'; object-src 'self'; frame-src 'self' https://www.jsonb.online",
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}