ГдеПосылка: отслеживание почтовых отправлений

ГдеПосылка: отслеживание почтовых отправлений

Плагин отслеживания почтовых отправлений. Трекинг посылок с сайтов AliExpress и JD. Отследить посылку с АлиЭкспресс стало проще.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "__MSG_info_name__",
  "short_name": "__MSG_info_short_name__",
  "description": "__MSG_info_description__",
  "default_locale": "ru",
  "background": {
    "scripts": [
      "js/background.js"
    ],
    "persistent": true
  },
  "browser_action": {
    "default_icon": "img/icons/logo-128-bw.png",
    "default_popup": "popup.html",
    "default_title": ""
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "vendor/vendor.min.js",
        "js/environment.js",
        "js/library.js",
        "js/aer.js",
        "js/orders.js"
      ],
      "css": [
        "css/widget.css"
      ],
      "run_at": "document_start"
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/sites/everywhere.context.js",
        "js/sites/everywhere.widget.js"
      ],
      "css": [
        "css/widget.css"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "*://*.aliexpress.ru/order_detail.htm*"
      ],
      "js": [
        "js/sites/aliexpress.order.js"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "*://*.aliexpress.com/order_detail.htm*"
      ],
      "js": [
        "js/sites/aliexpress.order.en.js"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "*://*.aliexpress.ru/order_list.htm*",
        "*://*.aliexpress.ru/orderList.htm*"
      ],
      "js": [
        "js/sites/aliexpress.orders.js"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "*://*.aliexpress.com/order_list.htm*",
        "*://*.aliexpress.com/orderList.htm*"
      ],
      "js": [
        "js/sites/aliexpress.orders.en.js"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "*://*.aliexpress.com/logisticsdetail.htm*",
        "*://*.aliexpress.ru/logisticsdetail.htm*"
      ],
      "js": [
        "js/sites/aliexpress.logistics.js"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "*://user.gearbest.com/m-users-a-order_detail-order_id-*.htm"
      ],
      "js": [
        "js/sites/gearbest.order.js"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "*://user.gearbest.com/my-orders.html*"
      ],
      "js": [
        "js/sites/gearbest.order_list.js"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "*://*.jd.com/order/orderList.html*",
        "*://*.jd.ru/order/orderList.html*"
      ],
      "js": [
        "js/sites/jd.matcher.js"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "https://*.shopotam.ru/parcel/all/archive*"
      ],
      "js": [
        "js/sites/shopotam.matcher.js"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "https://*.litemf.com/*/account/package/*"
      ],
      "js": [
        "js/sites/litemf.matcher.js"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "https://gdeposylka.ru/*",
        "https://packageradar.com/*"
      ],
      "js": [
        "js/sites/gdeposylka.sync.js"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "*://*.amazon.com/*/ship-track/*"
      ],
      "js": [
        "js/sites/amazon.matcher.js"
      ],
      "run_at": "document_end"
    }
  ],
  "omnibox": {
    "keyword": "gp"
  },
  "options_ui": {
    "page": "options.html",
    "chrome_style": true
  },
  "content_security_policy": "script-src 'self' 'unsafe-eval' https://ssl.google-analytics.com; object-src 'self'",
  "icons": {
    "16": "img/icons/logo-16-wbg.png",
    "19": "img/icons/logo-19-wbg.png",
    "38": "img/icons/logo-38-wbg.png",
    "48": "img/icons/logo-48x48.png",
    "128": "img/icons/logo-128-wbg.png"
  },
  "permissions": [
    "alarms",
    "tabs",
    "http://*/*",
    "https://*/*",
    "contextMenus",
    "storage"
  ],
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "0.3.5",
  "web_accessible_resources": [
    "res/*",
    "assets/*",
    "img/*",
    "js/*.js",
    "css/modal.css",
    "vendor/vendor.min.js"
  ]
}