Cone Devtools

Cone Devtools

菜鸟前端cone插件,里面包含接口mock,资源代理等

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "short_name": "Cone Devtools",
  "name": "Cone Devtools",
  "description": "菜鸟前端cone插件,里面包含接口mock,资源代理等",
  "version": "0.0.34",
  "manifest_version": 2,
  "permissions": [
    "storage",
    "webRequest",
    "webRequestBlocking",
    "tabs",
    "<all_urls>"
  ],
  "icons": {
    "48": "assets/cone-logo.png",
    "128": "assets/cone-logo.png"
  },
  "background": {
    "scripts": [
      "static/js/background.js"
    ],
    "persistent": true
  },
  "devtools_page": "panel.html",
  "browser_action": {
    "default_icon": {
      "19": "assets/cone-logo.png",
      "38": "assets/cone-logo.png",
      "128": "assets/cone-logo.png"
    },
    "default_title": "配置",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "js": [
        "static/js/inject.js"
      ],
      "run_at": "document_start",
      "matches": [
        "http://*/*",
        "https://*/*",
        "*://*.taobao.com/*",
        "*://*.tmall.com/*",
        "*://*.alipay.com/*",
        "*://*.alibaba-inc.com/*"
      ],
      "exclude_matches": [
        "*://*.reviewcook.taobao.com/*",
        "*://pre-wormhole.taobao.com/wow/heihe/act/guan-debug*",
        "*://pre-wormhole.taobao.com/wow/heihe/act/guan-proxy-test*",
        "*://login.alibaba-inc.com/*",
        "*://pre-wormhole.tmall.com/wow/heihe/act/guan-proxy-test*"
      ],
      "all_frames": true
    }
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "web_accessible_resources": [
    "static/js/content.js",
    "/static/js/*"
  ]
}