TAOBAOEXPRESS Order Tool

TAOBAOEXPRESS Order Tool

Hỗ trợ đặt hàng trên 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,
  "name": "TAOBAOEXPRESS Order Tool",
  "description": "Hỗ trợ đặt hàng trên TAOBAO, TMALL, 1688",
  "version": "4.1",
  "browser_action": {
    "default_icon": "images/logo.png",
    "default_title": "TAOBAOEXPRESS Order Tool"
  },
  "icons": {
    "16": "images/icon_16.png",
    "32": "images/icon_32.png",
    "64": "images/icon_64.png",
    "128": "images/icon_128.png"
  },
  "permissions": [
    "storage",
    "cookies",
    "http://taobaovietnam.vn/*",
    "https://taobaovietnam.vn/*"
  ],
  "background": {
    "scripts": [
      "/js/background.js"
    ],
    "persistent": false
  },
  "web_accessible_resources": [
    "images/*"
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "content_scripts": [
    {
      "matches": [
        "http://*.taobao.com/*",
        "https://*.taobao.com/*",
        "http://*.tmall.com/*",
        "https://*.tmall.com/*",
        "http://*.tmall.hk/*",
        "https://*.tmall.hk/*",
        "http://*.1688.com/*",
        "https://*.1688.com/*"
      ],
      "css": [
        "/css/bootstrap.css",
        "/css/extension.css"
      ],
      "js": [
        "/js/appscript.js"
      ]
    }
  ]
}