eReaderIQ Integrator

eReaderIQ Integrator

Integrates eReaderIQ with Amazon for quickly checking Kindle price history & watching for Kindle price drops.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "version": "0.12.0",
  "name": "eReaderIQ Integrator",
  "author": "Christian Hupfeld",
  "description": "Integrates eReaderIQ with Amazon for quickly checking Kindle price history & watching for Kindle price drops.",
  "action": {
    "default_icon": {
      "16": "images/eReaderIQ_square_16.png",
      "48": "images/eReaderIQ_square_48.png",
      "128": "images/eReaderIQ_square_128.png"
    },
    "default_title": "eReaderIQ Integrator",
    "default_popup": "popup.html"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.amazon.com/*",
        "https://www.amazon.co.uk/*",
        "https://smile.amazon.com/*",
        "https://smile.amazon.co.uk/*"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_idle"
    }
  ]
}