SwipeWisely

SwipeWisely

Our Goal Is To Ensure That You Never Pay More Than You Have To!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "SwipeWisely",
  "description": "Our Goal Is To Ensure That You Never Pay More Than You Have To!",
  "version": "5",
  "background": {
    "scripts": [
      "assets/lib/jquery.js",
      "background.js"
    ]
  },
  "icons": {
    "24": "img/icon-24.png",
    "32": "img/icon-32.png",
    "128": "img/icon-128.png"
  },
  "browser_action": {
    "default_icon": "img/icon-32.png",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "run_at": "document_end",
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "assets/lib/jquery.js",
        "content.js"
      ],
      "css": [
        "assets/common.css"
      ]
    }
  ],
  "permissions": [
    "tabs",
    "background"
  ],
  "web_accessible_resources": [
    "webRequest",
    "assets/common.css",
    "background",
    "img/*.png"
  ]
}