AMZ桌面-亚马逊选品利润计算器

AMZ桌面-亚马逊选品利润计算器

精确的利润计算

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "AMZ桌面-亚马逊选品利润计算器",
  "description": "精确的利润计算",
  "version": "1.9.0",
  "version_name": "by 牛津小马哥",
  "manifest_version": 2,
  "icons": {
    "48": "icons/icon.png",
    "128": "icons/icon.png"
  },
  "browser_action": {
    "default_title": "AMZ桌面-亚马逊选品利润计算器",
    "default_popup": "popup/popup.html"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "options_ui": {
    "page": "options/options.html",
    "chrome_style": true
  },
  "permissions": [
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://*.amazon.com/*",
        "https://*.amazon.co.uk/*",
        "https://*.amazon.ca/*",
        "https://*.amazon.com.au/*",
        "https://*.amazon.com.mx/*",
        "https://*.amazon.de/*",
        "https://*.amazon.in/*",
        "https://*.amazon.fr/*",
        "https://*.amazon.it/*",
        "https://*.amazon.es/*",
        "https://*.amazon.co.jp/*"
      ],
      "js": [
        "content/amz/content.js"
      ],
      "css": [
        "content/amz/style.css"
      ]
    }
  ]
}