Coingaze | Set Crypto alerts from WazirX

Coingaze | Set Crypto alerts from WazirX

Coingaze is a Crypto Price Alert app which lets you set alerts from WazirX and get notified on PC, Mobile via Browser or Telegram

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Coingaze | Set Crypto alerts from WazirX",
  "description": "Coingaze is a Crypto Price Alert app which lets you set alerts from WazirX and get notified on PC, Mobile via Browser or Telegram",
  "version": "1.0.2",
  "manifest_version": 3,
  "icons": {
    "16": "icon.png",
    "48": "icon.png",
    "128": "icon.png"
  },
  "action": {
    "default_popup": "popup.html",
    "default_title": "Coingaze",
    "default_icon": "icon.png"
  },
  "permissions": [
    "storage",
    "cookies",
    "tabs"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "host_permissions": [
    "http://coingaze.in/*",
    "https://coingaze.in/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://wazirx.com/exchange/*-*"
      ],
      "js": [
        "contentScript.js"
      ],
      "run_at": "document_end"
    }
  ]
}