Butterfly Coupons

Butterfly Coupons save your thousands of dollars by showing you coupon codes that are available while shopping online.
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "manifest_version": 2,
  "name": "Butterfly Coupons",
  "description": "Butterfly Coupons save your thousands of dollars by showing you coupon codes that are available while shopping online.",
  "version": "1.00",
  "permissions": [
    "tabs",
    "storage",
    "activeTab",
    "webNavigation"
  ],
  "background": {
    "scripts": [
      "background.js",
      "js/aes.js"
    ]
  },
  "browser_action": {
    "default_icon": "images/icons/disable38x38.png",
    "default_title": "Butterfly Coupons"
  },
  "icons": {
    "48": "images/icons/enable48x48.png",
    "128": "images/logo128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_start",
      "js": [
        "content.js",
        "js/aes.js"
      ]
    }
  ],
  "update_url": "https://clients2.google.com/service/update2/crx",
  "content_security_policy": "script-src 'self' https://ssl.google-analytics.com; script-src 'self' https://connect.facebook.net; object-src 'self'",
  "web_accessible_resources": [
    "content.js",
    "*.png",
    "*.gif"
  ]
}