Estate Card

Estate Card

Exclusively for Estate Card cardholders. Be notified when property tax rewards are available and maximize the rewards you can earn!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Estate Card",
  "version": "4.0.6",
  "description": "Exclusively for Estate Card cardholders. Be notified when property tax rewards are available and maximize the rewards you can earn!",
  "homepage_url": "https://www.myestatecard.com/",
  "manifest_version": 3,
  "background": {
    "service_worker": "serviceworker.js"
  },
  "permissions": [
    "tabs",
    "webRequest",
    "storage"
  ],
  "host_permissions": [
    "*://*/*"
  ],
  "action": {
    "default_icon": {
      "16": "icons/mc_icon16.png",
      "24": "icons/mc_icon24.png",
      "32": "icons/mc_icon32.png"
    },
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.myestatecardlocal.com/*",
        "*://*.myestatecard.com/*"
      ],
      "js": [
        "js/contentscript.js"
      ]
    },
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "js/slider.js"
      ]
    },
    {
      "matches": [
        "*://search.yahoo.com/*",
        "*://www.bing.com/*",
        "*://*.google.com/*"
      ],
      "js": [
        "js/serp.js"
      ]
    }
  ],
  "icons": {
    "16": "icons/mc_icon16.png",
    "48": "icons/mc_icon48.png",
    "128": "icons/mc_icon128.png"
  },
  "options_page": "options.html"
}