JSONEye

JSONEye

专为爬虫工程师定制的JSON格式化工具,直接显示JSONPath,支持JSON和JSONP

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "JSONEye",
  "version": "1.0.7",
  "homepage_url": "https://jsoneye.cn",
  "description": "专为爬虫工程师定制的JSON格式化工具,直接显示JSONPath,支持JSON和JSONP",
  "icons": {
    "16": "icons/16.png",
    "32": "icons/32.png",
    "128": "icons/128.png"
  },
  "browser_action": {
    "default_icon": "icons/logo.png",
    "default_title": "JSONEye"
  },
  "background": {
    "scripts": [
      "js/jquery.min.js",
      "js/background.js",
      "js/bignumber.min.js",
      "js/FileSaver.min.js",
      "js/jquery.json.js",
      "js/jquery.json2xml.js",
      "js/jquery.message.js",
      "js/jquery.numberedtextarea.js",
      "js/jquery.xml2json.js",
      "js/json2.js",
      "js/bootstrap.min.js",
      "js/jsonlint.js",
      "js/listener.js",
      "js/toastr.js",
      "js/content.js",
      "js/option.js"
    ],
    "persistent": true
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*",
        "file://*/*"
      ],
      "js": [
        "js/content.js",
        "js/jquery.min.js",
        "js/toastr.js",
        "js/bootstrap.min.js",
        "js/jquery.json.js"
      ],
      "run_at": "document_start"
    }
  ],
  "permissions": [
    "activeTab",
    "storage"
  ],
  "web_accessible_resources": [
    "*"
  ],
  "offline_enabled": true,
  "manifest_version": 2
}