buylow

buylow

Shop smart, buylow!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "buylow",
  "short_name": "buylow",
  "version": "0.0.15",
  "manifest_version": 2,
  "description": "Shop smart, buylow!",
  "icons": {
    "16": "img/logo_round.png",
    "48": "img/logo_round.png",
    "128": "img/logo_round.png"
  },
  "background": {
    "page": "background.html",
    "persistent": true
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "product-page.js"
      ],
      "run_at": "document_start"
    }
  ],
  "browser_action": {
    "default_icon": "img/logo_round.png",
    "default_title": "buylow",
    "default_popup": "popup.html"
  },
  "permissions": [
    "http://*/*",
    "https://*/*",
    "storage",
    "webRequest"
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "web_accessible_resources": [
    "img/*"
  ]
}