Savings Bar: Compare Prices in One Click

Savings Bar: Compare Prices in One Click

One Click Price Comparison. Start Saving Smartly

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Savings Bar: Compare Prices in One Click",
  "description": "One Click Price Comparison. Start Saving Smartly",
  "version": "3.1.2",
  "offline_enabled": false,
  "permissions": [
    "*://savings.bar/*",
    "*://*.savings.bar/*"
  ],
  "optional_permissions": [
    "*://amazon.com/*",
    "*://*.ssl-images-amazon.com/*",
    "*://ebay.com/*",
    "*://*.alicdn.com/*",
    "*://aliexpress.com/*"
  ],
  "background": {
    "persistent": true,
    "scripts": [
      "js/background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/content.js"
      ],
      "run_at": "document_end",
      "all_frames": false
    }
  ],
  "web_accessible_resources": [
    "index.html"
  ],
  "browser_action": {
    "default_title": "SavingsBar",
    "default_icon": {
      "38": "img/inactive.png"
    }
  },
  "icons": {
    "32": "img/logo32.png",
    "48": "img/logo48.png",
    "128": "img/logo128.png"
  },
  "content_security_policy": "script-src 'self'; object-src 'self'"
}