{
  "manifest_version": 3,
  "name": "春天小猪",
  "version": "1.0.0",
  "icons": {
    "16": "public/logo.png",
    "24": "public/logo.png",
    "32": "public/logo.png"
  },
  "description": "",
  "content_security_policy": {
    "script-src": "self unsafe-eval",
    "unsafe-eval": "object-src self",
    "unsafe-inline": "self"
  },
  "action": {
    "default_popup": "index.html",
    "default_title": "春天小猪google插件框架",
    "default_icon": {
      "16": "public/logo.png",
      "24": "public/logo.png",
      "32": "public/logo.png"
    }
  },
  "options_page": "options.html",
  "content_scripts": [
    {
      "matches": [
        "https://*.taobao.com/*"
      ],
      "js": [
        "src/content_scripts/taobao/taobao.tsx"
      ]
    },
    {
      "matches": [
        "https://*.chuntianxiaozhu.com/*"
      ],
      "js": [
        "src/content_scripts/test/index.tsx"
      ]
    }
  ],
  "background": {
    "service_worker": "src/background.ts",
    "type": "module"
  },
  "permissions": [
    "background",
    "contextMenus",
    "bookmarks",
    "tabs",
    "storage",
    "history",
    "notifications",
    "cookies",
    "activeTab"
  ],
  "host_permissions": [
    "https://*.taobao.com/*",
    "https://*.tmall.com/*"
  ]
}