Spend Less

Spend Less

We save you money. No coupons. No deals. Just an extension that helps you Spend Less.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Spend Less",
  "description": "We save you money. No coupons. No deals. Just an extension that helps you Spend Less.",
  "version": "0.3.0",
  "permissions": [
    "storage",
    "<all_urls>"
  ],
  "browser_action": {
    "default_title": "AntiShop Preferences",
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "handicon16.png",
    "32": "handicon32.png",
    "48": "handicon48.png",
    "128": "handicon128.png"
  },
  "manifest_version": 2,
  "content_security_policy": "script-src 'self' https://www.gstatic.com/ https://*.firebaseio.com https://www.googleapis.com https://www.googletagmanager.com; object-src 'self'",
  "content_scripts": [
    {
      "js": [
        "foreground.js"
      ],
      "run_at": "document_idle",
      "all_frames": true,
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "background": {
    "page": "background.html"
  },
  "web_accessible_resources": [
    "background.js"
  ]
}