Cricket Now: Live IPL Scores

Cricket Now: Live IPL Scores

Stay updated with live IPL scores! Get real-time match updates, scores, and stats for your favorite teams in every game.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Cricket Now: Live IPL Scores",
  "description": "Stay updated with live IPL scores! Get real-time match updates, scores, and stats for your favorite teams in every game.",
  "version": "1.0.0",
  "permissions": [
    "storage"
  ],
  "author": [
    {
      "name": "Sanket Munot",
      "email": "[email protected]"
    }
  ],
  "action": {
    "default_popup": "index.html"
  },
  "icons": {
    "128": "./icon128.png"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "contentScripts.js"
      ],
      "css": [
        "live-score.css"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "dist/bundle.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    },
    {
      "resources": [
        "live-score.css"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}