AfterShip: track packages of FedEx, UPS & DHL

AfterShip: track packages of FedEx, UPS & DHL

The easiest way to track all your shipments and notify your customers delivery updates

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "AfterShip: track packages of FedEx, UPS & DHL",
  "short_name": "AfterShip",
  "version": "1.0.6",
  "manifest_version": 2,
  "minimum_chrome_version": "35",
  "description": "The easiest way to track all your shipments and notify your customers delivery updates",
  "icons": {
    "16": "img/icon16.png",
    "48": "img/icon48.png",
    "128": "img/icon128.png"
  },
  "browser_action": {
    "default_icon": "img/icon38.png",
    "default_popup": "popup.html"
  },
  "options_page": "options.html",
  "background": {
    "page": "background.html"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "css/common.css",
        "css/notification.css"
      ],
      "js": [
        "js/common.js",
        "js/page_inject.js"
      ],
      "all_frames": false,
      "run_at": "document_end"
    }
  ],
  "permissions": [
    "<all_urls>",
    "contextMenus",
    "storage",
    "tabs"
  ],
  "web_accessible_resources": [
    "fonts/*.woff",
    "img/track_button.svg",
    "*.html"
  ]
}