电商信息导出助手

电商信息导出助手

1688、淘宝、天猫、京东、速卖通等国内外电商平台详情页图片下载等功能

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "电商信息导出助手",
  "description": "1688、淘宝、天猫、京东、速卖通等国内外电商平台详情页图片下载等功能",
  "version": "2.8.3",
  "manifest_version": 3,
  "icons": {
    "16": "img/shop.png",
    "48": "img/shop.png",
    "128": "img/shop.png"
  },
  "options_page": "options.html",
  "action": {
    "default_icon": {
      "16": "img/shop.png",
      "24": "img/shop.png",
      "32": "img/shop.png"
    },
    "default_title": "电商信息导出助手",
    "default_popup": "popup.html"
  },
  "background": {
    "service_worker": "bg.js"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "include_globs": [
        "https://detail.1688.*/*",
        "https://item.taobao.*/*",
        "https://detail.tmall.*/*",
        "https://item.jd.*/*",
        "https://*.aliexpress.*/item/*"
      ],
      "js": [
        "js/content.js"
      ],
      "css": [
        "css/content.css",
        "css/main.css"
      ],
      "run_at": "document_end"
    }
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "permissions": [
    "downloads",
    "storage"
  ]
}