WAIX Extension

WAIX Extension

Помощник по удобному поиску и добавлению товаров с Китайских интернет-площадок taobao, tmall и 1688

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "default_locale": "ru",
  "name": "WAIX Extension",
  "description": "Помощник по удобному поиску и добавлению товаров с Китайских интернет-площадок taobao, tmall и 1688",
  "version": "1.1.93",
  "author": "WAIX Comp.",
  "homepage_url": "https://waix.ru/",
  "icons": {
    "16": "build/img/waix_16.png",
    "32": "build/img/waix_32.png",
    "48": "build/img/icon_48.png",
    "64": "build/img/icon_64.png",
    "128": "build/img/icon_128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.taobao.com/*",
        "https://*.tmall.com/*",
        "https://*.tmall.hk/*",
        "https://*.1688.com/*"
      ],
      "js": [
        "build/js/content.js"
      ]
    },
    {
      "matches": [
        "http://waix/*",
        "https://*.waix.ru/*"
      ],
      "js": [
        "build/js/waix.js"
      ]
    },
    {
      "matches": [
        "http://waix/*",
        "https://*.waix.ru/*"
      ],
      "all_frames": true,
      "js": [
        "build/js/frame.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "build/js/bg.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_popup": "build/popup.html",
    "default_icon": "build/img/waix_32.png"
  },
  "permissions": [
    "https://*.waix.ru/*",
    "https://*.taobao.com/*",
    "https://*.tmall.com/*",
    "https://*.tmall.hk/*",
    "https://*.1688.com/*"
  ]
}