Totorder.com

Totorder.com

Cho phép bạn đặt hàng, nhận báo giá trực tuyến tại các website thương mại điện tử như tmall, taobao, 1688

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Totorder.com",
  "description": "Cho phép bạn đặt hàng, nhận báo giá trực tuyến tại các website thương mại điện tử như tmall, taobao, 1688",
  "browser_action": {
    "default_icon": "images/icon48.png",
    "default_popup": "template/popup.html",
    "default_title": "Totorder.com - Order taobao"
  },
  "icons": {
    "16": "images/icon16.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "content_scripts": [
    {
      "css": [
        "css/style.css"
      ],
      "js": [
        "js/lib/jquery.min.js",
        "js/tmall/contentScript.js"
      ],
      "matches": [
        "http://*.tmall.com/*",
        "https://*.tmall.com/*",
        "http://*.tmall.hk/*",
        "https://*.tmall.hk/*"
      ],
      "run_at": "document_idle"
    },
    {
      "css": [
        "css/style.css"
      ],
      "js": [
        "js/lib/jquery.min.js",
        "js/taobao/contentScript.js"
      ],
      "matches": [
        "http://*.taobao.com/*",
        "https://*.taobao.com/*"
      ],
      "run_at": "document_idle"
    },
    {
      "css": [
        "css/style.css"
      ],
      "js": [
        "js/lib/jquery.min.js",
        "js/1688/contentScript.js"
      ],
      "matches": [
        "http://*.1688.com/*",
        "https://*.1688.com/*"
      ],
      "run_at": "document_idle"
    }
  ],
  "permissions": [
    "http://*.1688.com/*",
    "https://*.1688.com/*",
    "http://*.taobao.com/*",
    "https://*.taobao.com/*",
    "http://*.tmall.com/*",
    "https://*.tmall.com/*",
    "http://*.tmall.hk/*",
    "https://*.tmall.hk/*",
    "https://*.toporder.vn/*"
  ],
  "web_accessible_resources": [
    "images/*",
    "css/*",
    "template/*"
  ],
  "manifest_version": 2,
  "version": "2.2.3"
}