JSON Formatter In Modal

JSON Formatter In Modal

Format JSON in modal dialog with right-click

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "JSON Formatter In Modal",
  "version": "1.1.0",
  "description": "Format JSON in modal dialog with right-click",
  "author": "cjh",
  "icons": {
    "48": "icon.png",
    "128": "icon.png"
  },
  "background": {
    "page": "background/background.html"
  },
  "options_ui": {
    "page": "options/options.html",
    "open_in_tab": false
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "contentScript/tool.js",
        "contentScript/getFormattedHtml.js",
        "contentScript/template.js",
        "contentScript/renderModal.js",
        "contentScript/xhrFormat.js",
        "contentScript/dom.js",
        "contentScript/bracketMatch.js"
      ],
      "run_at": "document_start"
    }
  ],
  "permissions": [
    "contextMenus",
    "activeTab",
    "storage"
  ]
}