HLTB Extension for Backloggd

HLTB Extension for Backloggd

This extension shows the normal beat time for Backloggd

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "HLTB Extension for Backloggd",
  "description": "This extension shows the normal beat time for Backloggd",
  "version": "0.5",
  "manifest_version": 3,
  "permissions": [
    "contextMenus",
    "storage"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  },
  "icons": {
    "128": "icons/icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.backloggd.com/*"
      ],
      "js": [
        "time-badge.js",
        "hltb-game.js"
      ],
      "run_at": "document_idle",
      "css": [
        "style.css"
      ]
    }
  ],
  "action": {
    "default_icon": {
      "128": "icons/icon128.png"
    }
  }
}