Web 性能分析

Web 性能分析

展示 Web 常见关键性能指标,页面加载瀑布流和资源数据分析等。

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Web 性能分析",
  "description": "展示 Web 常见关键性能指标,页面加载瀑布流和资源数据分析等。",
  "version": "1.0",
  "manifest_version": 2,
  "content_security_policy": "script-src 'self' 'sha256-GgRxrVOKNdB4LrRsVPDSbzvfdV4UqglmviH9GoBJ5jk='; object-src 'self'",
  "icons": {
    "16": "icon.png",
    "48": "icon.png",
    "128": "icon.png"
  },
  "browser_action": {
    "default_icon": "icon.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "/static/js/content.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "/static/css/content.css"
  ],
  "background": {
    "scripts": [
      "/static/js/background.js"
    ]
  },
  "permissions": [
    "contextMenus"
  ],
  "homepage_url": "https://github.com/Godiswill/web-performance-extension"
}