Visual Inspector(前端重构+视觉走查辅助工具)

Visual Inspector(前端重构+视觉走查辅助工具)

A helper tool for fast front-end development and visual inspection.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Visual Inspector(前端重构+视觉走查辅助工具)",
  "short_name": "VI",
  "version": "1.6.8",
  "manifest_version": 2,
  "default_locale": "zh_CN",
  "author": "paul",
  "description": "__MSG_pluginDesc__",
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self';",
  "icons": {
    "128": "icon.png"
  },
  "browser_action": {
    "default_icon": "icon_gray.png",
    "default_title": "Visual Inspector",
    "default_popup": "popup_loading.html"
  },
  "permissions": [
    "unlimitedStorage",
    "storage",
    "activeTab"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_end"
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "web_accessible_resources": [
    "content.css"
  ]
}