Store Watchers

Store Watchers

The official Store Watchers Chrome extension

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "description": "The official Store Watchers Chrome extension",
  "version": "0.17.0",
  "manifest_version": 3,
  "name": "Store Watchers",
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_icon": {
      "16": "logo_square.png",
      "24": "logo_square.png",
      "32": "logo_square.png"
    },
    "default_popup": "popup.html"
  },
  "permissions": [
    "tabs",
    "storage",
    "scripting"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://localhost:8000/*",
        "*://*.storewatchers.com/*"
      ],
      "js": [
        "sub_client.js"
      ],
      "run_at": "document_end"
    }
  ],
  "externally_connectable": {
    "matches": [
      "*://*.storewatchers.com/*",
      "http://localhost:8000/*"
    ]
  },
  "host_permissions": [
    "https://*/*",
    "http://*/*"
  ],
  "icons": {
    "128": "logo_square.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "space_grotesk.woff2",
        "space_grotesk.woff2",
        "space_grotesk_700.woff2",
        "content.styles.css",
        "icon-128.png",
        "icon-34.png",
        "logo_square.png",
        "logo.png",
        "popup.html",
        "background.bundle.js",
        "contentScript.bundle.js",
        "options.bundle.js",
        "popup.bundle.js"
      ],
      "matches": [
        "https://*/*",
        "http://*/*"
      ]
    }
  ]
}