Shopping Baba

Shopping Baba

Get Automatic alerts for cashback while shopping online

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Shopping Baba",
  "version": "0.1",
  "manifest_version": 2,
  "description": "Get Automatic alerts for cashback while shopping online",
  "browser_action": {
    "default_icon": {
      "19": "icons/cart.png"
    },
    "default_title": "Shopping Baba"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  },
  "web_accessible_resources": [
    "icons/logo.png",
    "icons/pop-up.png"
  ],
  "permissions": [
    "tabs"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_start",
      "js": [
        "content.js",
        "jquery.js"
      ]
    }
  ]
}