Davout

Davout

A browser extension for displaying League of Legends rank in the Twitch chat.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Davout",
  "description": "A browser extension for displaying League of Legends rank in the Twitch chat.",
  "version": "1.6.1",
  "manifest_version": 3,
  "icons": {
    "16": "icons/logo-16.png",
    "32": "icons/logo-32.png",
    "48": "icons/logo-48.png",
    "128": "icons/logo-128.png"
  },
  "content_scripts": [
    {
      "js": [
        "assets/index.ts-loader-c94a3a61.js"
      ],
      "matches": [
        "*://*.twitch.tv/*"
      ],
      "css": [
        "css/index.css"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    {
      "matches": [
        "*://*.twitch.tv/*"
      ],
      "resources": [
        "img/iron.png",
        "img/bronze.png",
        "img/silver.png",
        "img/gold.png",
        "img/emerald.png",
        "img/platinum.png",
        "img/diamond.png",
        "img/master.png",
        "img/grandmaster.png",
        "img/challenger.png",
        "img/unranked.png",
        "css/index.css"
      ],
      "use_dynamic_url": false
    },
    {
      "matches": [
        "*://*.twitch.tv/*"
      ],
      "resources": [
        "assets/chunk-dd2420c5.js"
      ],
      "use_dynamic_url": true
    }
  ],
  "host_permissions": [
    "*://*.twitch.tv/*"
  ],
  "externally_connectable": {
    "matches": [
      "https://davout.io/*"
    ]
  },
  "background": {
    "service_worker": "service-worker-loader.js",
    "type": "module"
  }
}