易用上货助手

易用上货助手

易用上货助手

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "易用上货助手",
  "short_name": "上货助手",
  "version": "0.1.7",
  "description": "易用上货助手",
  "icons": {
    "16": "icon/icon-16.png",
    "48": "icon/icon-48.png",
    "128": "icon/icon-128.png"
  },
  "permissions": [
    "contextMenus",
    "tabs",
    "storage",
    "*://*.taobao.com/*",
    "*://*.tmall.com/*",
    "*://*.jiyoujia.com/*",
    "*://*.sqyiyong.cn/*"
  ],
  "background": {
    "page": "background.html"
  },
  "browser_action": {
    "default_title": "易用上货助手",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "js": [
        "js/content.bundle.js"
      ],
      "matches": [
        "*://*.taobao.com/*",
        "*://*.tmall.com/*",
        "*://*.jiyoujia.com/*",
        "*://*.sqyiyong.cn/*"
      ],
      "run_at": "document_end"
    }
  ],
  "content_security_policy": "default-src 'self'; script-src 'self'; style-src * 'unsafe-inline'; img-src 'self' data:;"
}