YUX Performance

YUX Performance

Analyze and alert runtime performance

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "YUX Performance",
  "version": "0.0.5",
  "description": "Analyze and alert runtime performance",
  "manifest_version": 2,
  "icons": {
    "16": "icons/icon-16.png",
    "48": "icons/icon-48.png",
    "128": "icons/icon-128.png"
  },
  "permissions": [
    "activeTab"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.qidian.com/*",
        "*://*.yuewen.com/*",
        "*://*.webnovel.com/*",
        "*://*.hongxiu.com/*",
        "*://localhost/*",
        "*://127.0.0.1/*"
      ],
      "js": [
        "lib/lodash.min.js",
        "content.js"
      ]
    }
  ],
  "page_action": {
    "default_popup": "popup.html",
    "default_icon": {
      "48": "icons/icon-48.png"
    }
  }
}