Twitch Preview Mini

Twitch Preview Mini

Live previews when hovering over live streams on twitch.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "author": "XiongDEV",
  "manifest_version": 3,
  "name": "__MSG_name__",
  "version": "1.0",
  "default_locale": "en",
  "description": "__MSG_desc__",
  "icons": {
    "16": "images/tpm_16.png",
    "32": "images/tpm_32.png",
    "48": "images/tpm_48.png",
    "128": "images/tpm_128.png"
  },
  "content_scripts": [
    {
      "css": [
        "basic.css"
      ],
      "js": [
        "content.js"
      ],
      "matches": [
        "https://www.twitch.tv/*"
      ],
      "run_at": "document_end",
      "all_frames": true
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "storage",
    "tabs"
  ],
  "action": {
    "default_popup": "popups/popup.html",
    "default_icon": {
      "16": "images/tpm_16.png",
      "32": "images/tpm_32.png",
      "48": "images/tpm_48.png",
      "128": "images/tpm_128.png"
    }
  },
  "web_accessible_resources": [
    {
      "resources": [
        "images/*"
      ],
      "matches": [
        "https://www.twitch.tv/*"
      ]
    }
  ]
}