TTV Looking Glass

TTV Looking Glass

Generates links to other VODs allowing you to easily sync clips and vods.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "TTV Looking Glass",
  "description": "Generates links to other VODs allowing you to easily sync clips and vods.",
  "manifest_version": 3,
  "version": "0.0.1.24",
  "icons": {
    "48": "icons/48.png",
    "128": "icons/128.png"
  },
  "options_page": "options/options.html",
  "permissions": [
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://clips.twitch.tv/*",
        "*://www.twitch.tv/*"
      ],
      "js": [
        "main.js"
      ],
      "run_at": "document_end",
      "css": [
        "style.css"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js"
  }
}