WHASSUP IT

WHASSUP IT

Budweiser Canada has created a special tool to add a little extra Whassup! to your day.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "WHASSUP IT",
  "author": "Budweiser Canada",
  "version": "1.0",
  "description": "Budweiser Canada has created a special tool to add a little extra Whassup! to your day.",
  "browser_action": {
    "default_popup": "pop-up.html",
    "default_icon": "/images/128x128_AppIcon.png"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "js/findAndReplace.js",
        "js/scripts.js"
      ]
    }
  ],
  "icons": {
    "128": "images/128x128_AppIcon.png"
  },
  "permissions": [
    "activeTab",
    "http://*/*",
    "https://*/*"
  ]
}