BGG Hover

BGG Hover

Save time navigating BGG

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "BGG Hover",
  "description": "Save time navigating BGG",
  "version": "1.0.5",
  "permissions": [
    "tabs"
  ],
  "icons": {
    "16": "icons/logo16.png",
    "32": "icons/logo32.png",
    "48": "icons/logo48.png",
    "128": "icons/logo128.png"
  },
  "action": {
    "default_icon": "icons/logoFull.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "html/hoverWindow.html"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "content_scripts": [
    {
      "js": [
        "js/libs/jquery-3.6.4.min.js",
        "js/contentScript.js"
      ],
      "css": [
        "css/style.css"
      ],
      "matches": [
        "<all_urls>"
      ],
      "all_frames": true
    }
  ]
}