采集助手

采集助手

采集助手

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "采集助手",
  "version": "0.4.1",
  "description": "采集助手",
  "default_locale": "zh_CN",
  "permissions": [
    "*://*/*",
    "declarativeContent"
  ],
  "icons": {
    "16": "icons/main.png",
    "48": "icons/main.png",
    "128": "icons/main.png"
  },
  "background": {
    "scripts": [
      "js/background.js"
    ],
    "persistent": false
  },
  "page_action": {
    "default_popup": "popup.html",
    "default_title": "采集助手",
    "default_icon": {
      "19": "icons/main.png",
      "38": "icons/main.png"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "*://detail.1688.com/*"
      ],
      "js": [
        "js/content-script.js"
      ],
      "css": [
        "css/content-script.css"
      ],
      "run_at": "document_end",
      "all_frames": false
    }
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}