CityWeekly

CityWeekly

Get Great Deals

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "CityWeekly",
  "short_name": "CityWeekly",
  "version": "0.1.26",
  "description": "Get Great Deals",
  "icons": {
    "16": "/img/custom/icon-16.png",
    "32": "/img/custom/icon-32.png",
    "48": "/img/custom/icon-48.png",
    "128": "/img/custom/icon-128.png"
  },
  "incognito": "not_allowed",
  "background": {
    "service_worker": "service-worker.mjs",
    "type": "module"
  },
  "externally_connectable": {
    "matches": [
      "*://cw.techpop.io/*",
      "*://localhost/*"
    ]
  },
  "host_permissions": [
    "*://*/*"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "/img/custom/cross.svg",
        "/img/custom/company-logo.png",
        "/img/custom/logo_no_bg.png",
        "/img/custom/logo-with-text.svg",
        "/img/custom/techpop.svg",
        "/config.mjs",
        "/hoverPopup.mjs",
        "/offer.mjs",
        "/util.mjs",
        "/hoverPopupMarkets.mjs",
        "/rakuten-extension.mjs",
        "/streeteasy.mjs",
        "/zillow.mjs",
        "/fonts/Roboto-Regular.ttf"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ],
  "permissions": [
    "tabs",
    "scripting",
    "storage",
    "contextMenus",
    "notifications",
    "webNavigation"
  ],
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "/img/custom/icon-16.png",
      "32": "/img/custom/icon-32.png",
      "48": "/img/custom/icon-48.png",
      "128": "/img/custom/icon-128.png"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "exclude_globs": [
        "*://localhost*/*",
        "*://cw.techpop.io/*",
        "*://*techpop.io/*"
      ],
      "js": [
        "hoverPopup.js"
      ],
      "css": [
        "hoverPopup.css",
        "hoverPopupSettings.css"
      ],
      "run_at": "document_start"
    }
  ]
}