Tiểu Thần Tài

Tiểu Thần Tài

Công cụ đặt hàng Tiểu Thần Tài. taobao, 1688, tmall

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Tiểu Thần Tài",
  "description": "Công cụ đặt hàng Tiểu Thần Tài. taobao, 1688, tmall",
  "version": "2.7.0",
  "manifest_version": 2,
  "icons": {
    "48": "assets/16x16.png",
    "128": "assets/32x32.png"
  },
  "browser_action": {
    "default_title": "order-extension",
    "default_popup": "popup/popup.html"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "options_ui": {
    "page": "options/options.html",
    "chrome_style": true
  },
  "content_scripts": [
    {
      "matches": [
        "http://item.taobao.com/*",
        "https://item.taobao.com/*",
        "http://detail.tmall.com/*",
        "http://*.detail.tmall.com/*",
        "https://detail.tmall.com/*",
        "https://*.detail.tmall.com/*",
        "http://world.tmall.com/*",
        "https://world.tmall.com/*",
        "http://detail.1688.com/*",
        "https://detail.1688.com/*"
      ],
      "css": [
        "/content/content.css"
      ],
      "js": [
        "/content/content.js",
        "/content/inject.js"
      ],
      "all_frames": true
    }
  ],
  "permissions": [
    "storage",
    "tabs"
  ],
  "web_accessible_resources": [
    "assets/*",
    "content/content-inject.js"
  ],
  "input_components": {
    "env": {
      "VUE_APP_API_URL": "https://api.goship.asia"
    }
  }
}