国际站直播小助手

国际站直播小助手

用于阿里巴巴国际站直播后台的智能助手.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "国际站直播小助手",
  "version": "2.1.2",
  "description": "用于阿里巴巴国际站直播后台的智能助手.",
  "icons": {
    "16": "img/logo.png",
    "48": "img/logo.png",
    "128": "img/logo.png"
  },
  "action": {
    "default_title": "国际站直播小助手",
    "default_popup": "popup.html"
  },
  "host_permissions": [
    "http://ai-reply-api.bepai.net/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://content.alibaba.com/live/live-detail.htm?*"
      ],
      "js": [
        "js/content.js"
      ],
      "css": [
        "css/content.css"
      ],
      "run_at": "document_end"
    }
  ],
  "permissions": [
    "activeTab",
    "background",
    "storage"
  ],
  "background": {
    "service_worker": "background.js",
    "type": "module"
  }
}