Titochan Express

Titochan Express

Công cụ hỗ trợ đặt hàng order trên Tabao, 1688, Tmall

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Titochan Express",
  "version": "1.0.0",
  "manifest_version": 2,
  "description": "Công cụ hỗ trợ đặt hàng order trên Tabao, 1688, Tmall",
  "homepage_url": "https://titochan.com/",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "default_locale": "vi",
  "browser_action": {
    "default_icon": "icons/icon19.png",
    "default_title": "About",
    "default_popup": "src/browser_action/browser_action_login.html"
  },
  "permissions": [
    "https://titochan.com/",
    "http://titochan.com/"
  ],
  "background": {
    "scripts": [
      "js/jquery/jquery.min.js",
      "js/bg.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "http://item.taobao.com/*",
        "https://item.taobao.com/*",
        "http://*.tmall.com/*",
        "https://*.tmall.com/*",
        "https://*.tmall.hk/*",
        "http://detail.1688.com/*",
        "https://detail.1688.com/*",
        "https://*.coupang.com/*",
        "http://item.gmarket.co.kr/*",
        "https://item.gmarket.co.kr/*"
      ],
      "js": [
        "js/jquery/jquery.min.js"
      ]
    },
    {
      "matches": [
        "http://item.taobao.com/*",
        "https://item.taobao.com/*"
      ],
      "js": [
        "src/inject/inject-taobao.js"
      ]
    },
    {
      "matches": [
        "http://*.tmall.com/*",
        "https://*.tmall.com/*",
        "https://*.tmall.hk/*"
      ],
      "js": [
        "src/inject/inject-tmall.js"
      ]
    },
    {
      "matches": [
        "http://detail.1688.com/*",
        "https://detail.1688.com/*"
      ],
      "js": [
        "src/inject/inject-1688.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "images/*",
    "templates/*"
  ]
}