belugaboard - Club Stats for all

belugaboard - Club Stats for all

Enhanced club stats, by belugabrain

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "belugaboard - Club Stats for all",
  "description": "Enhanced club stats, by belugabrain",
  "version": "2.8",
  "manifest_version": 3,
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "js": [
        "third-party/jquery-3.6.0.js",
        "third-party/jquery-ui-1.12.1.js",
        "js/common.js",
        "js/content_script.js"
      ],
      "css": [
        "css/style.css",
        "third-party/fa/css/all.css"
      ],
      "run_at": "document_idle",
      "matches": [
        "https://*.strava.com/*"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "mainpanel.html",
        "/images/bb32.png",
        "/images/bb48.png",
        "/images/bb128.png",
        "/images/busybeluga.gif",
        "third-party/fa/webfonts/*"
      ],
      "matches": [
        "https://*.strava.com/*"
      ]
    }
  ],
  "permissions": [
    "storage",
    "activeTab",
    "scripting"
  ],
  "icons": {
    "16": "/images/bb16.png",
    "32": "/images/bb32.png",
    "48": "/images/bb48.png",
    "128": "/images/bb128.png"
  },
  "options_page": "options.html"
}