Treatail

Treatail

Get personalized deals anywhere you shop online.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Treatail",
  "version": "1.12",
  "manifest_version": 2,
  "description": "Get personalized deals anywhere you shop online.",
  "homepage_url": "http://www.treatail.com",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "background": {
    "scripts": [
      "/js/zepto.min.js",
      "/js/helpers.js",
      "/js/background_helpers.js",
      "/js/background.js"
    ],
    "persistent": true
  },
  "browser_action": {
    "default_title": "Treatail",
    "default_icon": "icons/icon48.png",
    "default_area": "navbar"
  },
  "web_accessible_resources": [
    "/js/zepto.min.js",
    "/images/logo.png",
    "/images/logo_vertical.png",
    "/images/logo_white.png",
    "/css/capture.css",
    "/css/offer_bar.css",
    "/css/please_wait.css",
    "/html/offer_bar.html"
  ],
  "permissions": [
    "tabs",
    "activeTab",
    "storage",
    "<all_urls>"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "/js/zepto.min.js",
        "/js/helpers.js",
        "/js/inject_helpers.js",
        "/js/inject.js"
      ],
      "run_at": "document_end"
    }
  ]
}