NewAsin选品

NewAsin选品

亚马逊网站选品插件,应用于亚马逊美国站的辅助选品工具。主要功能如下: 1、bestSellers侧边栏产品类目数据统计 2、bestSellers产品列表,产品详细参数展示,信息包含:销量、排名、产品ASIN,产品品牌等信息。 3、产品详情页,包含产品趋势图,信息包含:销量趋势、排名趋势、评价趋势和价格趋势等信息。 4、产品功能包含,产品查询、ASIN反查、关键词挖掘、生成市场报告、高频词和导出excel功能。

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "NewAsin选品",
  "version": "0.0.3",
  "description": "NewAsin选品",
  "icons": {
    "128": "images/xpcj_logo.png"
  },
  "browser_action": {
    "default_icon": "images/xpcj_logo.png",
    "default_title": "NewAsin选品",
    "default_popup": "popup.html"
  },
  "author": "myipp",
  "background": {
    "scripts": [
      "js/axios.min.js",
      "js/jquery.js",
      "js/background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.amazon.com/*"
      ],
      "js": [
        "js/axios.min.js",
        "js/jquery.js",
        "js/boot.js"
      ],
      "css": [
        "styles/elementui.css"
      ]
    }
  ],
  "permissions": [
    "declarativeContent",
    "https://www.amazon.com/*"
  ],
  "web_accessible_resources": [
    "js/inject.js",
    "js/vue.min.js",
    "js/axios.min.js",
    "js/jquery.js",
    "js/eleui.js",
    "js/echarts.min.js",
    "js/clipboard.min.js",
    "js/xlsx.core.min.js",
    "styles/elementui.css",
    "styles/fonts/element-icons.woff",
    "styles/fonts/element-icons.ttf"
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}