T-b.ru.com

T-b.ru.com

Расширение для покупок на китайских сайтах taobao.com и tmall.com

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "description": "Расширение для покупок на китайских сайтах taobao.com и tmall.com",
  "name": "T-b.ru.com",
  "version": "0.0.9",
  "browser_action": {
    "default_icon": "static/image/logo-tb128.png",
    "default_popup": "popup/index.html"
  },
  "permissions": [
    "notifications",
    "*://*.t-b.ru.com/",
    "*://t-b.ru.com/",
    "*://*.taobao.com/",
    "*://taobao.com/",
    "*://*.tmall.com/",
    "*://tmall.com/"
  ],
  "background": {
    "scripts": [
      "scripts/lodash.js",
      "scripts/shared.js",
      "scripts/background.js"
    ]
  },
  "content_scripts": [
    {
      "all_frames": true,
      "css": [
        "styles/main.css"
      ],
      "js": [
        "scripts/shared.js"
      ],
      "matches": [
        "*://*/*"
      ]
    },
    {
      "all_frames": true,
      "js": [
        "scripts/inject/taobao.com.js"
      ],
      "matches": [
        "*://item.taobao.com/*",
        "*://*.item.taobao.com/*"
      ]
    },
    {
      "all_frames": true,
      "js": [
        "scripts/inject/tmall.com.js"
      ],
      "matches": [
        "*://detail.tmall.com/item.htm*",
        "*://*.detail.tmall.com/item.htm*",
        "*://world.tmall.com/item/*",
        "*://detail.tmall.com/item_o.htm*"
      ]
    },
    {
      "all_frames": true,
      "js": [
        "scripts/inject/world.taobao.com.js"
      ],
      "matches": [
        "*://world.taobao.com/item/*"
      ]
    }
  ],
  "default_locale": "ru",
  "icons": {
    "16": "static/image/logo-tb16.png",
    "48": "static/image/logo-tb48.png",
    "128": "static/image/logo-tb128.png"
  }
}