Amazon 搜索词排名神器

Amazon 搜索词排名神器

亚马逊搜索词排名神器

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Amazon 搜索词排名神器",
  "version": "0.0.3",
  "description": "亚马逊搜索词排名神器",
  "background": {
    "service_worker": "./dist/background/index.global.js"
  },
  "icons": {
    "16": "./assets/icon-128.png",
    "48": "./assets/icon-128.png",
    "128": "./assets/icon-128.png"
  },
  "permissions": [
    "storage"
  ],
  "host_permissions": [
    "*://*/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "./dist/contentScripts/index.global.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "dist/contentScripts/style.css"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  }
}