Pricy - Amazon Price Watch

Pricy - Amazon Price Watch

Never overpay again!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Pricy - Amazon Price Watch",
  "version": "1.4",
  "description": "Never overpay again!",
  "permissions": [
    "*://*.amazon.com/*",
    "*://pricyapp.com/*",
    "storage"
  ],
  "content_security_policy": "script-src 'self' https://www.google-analytics.com; object-src 'self'",
  "manifest_version": 2,
  "background": {
    "scripts": [
      "lib/jquery-3.5.0.min.js",
      "pricy_b.js"
    ]
  },
  "browser_action": {
    "default_title": "Pricy - Jump to Amazon.com",
    "default_icon": {
      "16": "images/pricy16.png",
      "32": "images/pricy32.png",
      "48": "images/pricy48.png",
      "128": "images/pricy128.png",
      "256": "images/pricy256.png",
      "512": "images/pricy512.png"
    }
  },
  "icons": {
    "16": "images/pricy16.png",
    "32": "images/pricy32.png",
    "48": "images/pricy48.png",
    "128": "images/pricy128.png",
    "256": "images/pricy256.png",
    "512": "images/pricy512.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.amazon.com/*",
        "*://pricyapp.com/*"
      ],
      "all_frames": false,
      "css": [
        "pricy.css"
      ],
      "js": [
        "lib/jquery-3.5.0.min.js",
        "lib/jquery-ui.min.js",
        "lib/moment.min.js",
        "lib/opentip-jquery.js",
        "lib/chart.js",
        "pricy_js.js",
        "pricy_cs.js"
      ],
      "match_about_blank": false,
      "run_at": "document_start"
    }
  ]
}