ozon选品插件

ozon选品插件

ozon选品数据分析插件

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "ozon选品插件",
  "short_name": "mangoerp-ozonsell",
  "description": "ozon选品数据分析插件",
  "version": "0.1.5",
  "icons": {
    "16": "assets/logo16.png",
    "48": "assets/logo48.png",
    "128": "assets/logo128.png"
  },
  "action": {
    "default_title": "芒果店长-ozon选品指标插件",
    "default_icon": "assets/logo48.png"
  },
  "background": {
    "service_worker": "js/background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "exclude_matches": [
        "*://*.mangoerp.com/*",
        "http://127.0.0.1/*",
        "http://localhost/*"
      ],
      "all_frames": true,
      "js": [
        "js/content.js",
        "js/chunk-vendors.js",
        "assets/lib/echarts.min.js"
      ],
      "css": [
        "css/content.css"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "main.html"
      ],
      "matches": [
        "*://*.mangoerp.com/*",
        "*://www.ozon.ru/*",
        "*://*.ozon.ru/*",
        "*://*.ozone.ru/*"
      ]
    }
  ],
  "externally_connectable": {
    "matches": [
      "*://*.mangoerp.com/*",
      "*://www.ozon.ru/*",
      "*://*.ozon.ru/*",
      "*://*.ozone.ru/*"
    ]
  },
  "permissions": [
    "webRequest",
    "tabs",
    "storage"
  ],
  "host_permissions": [
    "http://*/*",
    "https://*/*",
    "http://*.mangoerp.com/",
    "https://*.mangoerp.com/"
  ]
}