Live Thread Ticker

Live Thread Ticker

Live Thread Ticker (LTT) adds a ticker to videos to display live comments from threads

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "js/initiate-ticker.js",
        "js/html-generator.js",
        "js/comment-fetcher.js"
      ],
      "css": [
        "css/ticker.css"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_idle"
    }
  ],
  "description": "Live Thread Ticker (LTT) adds a ticker to videos to display live comments from threads",
  "icons": {
    "128": "icon.png"
  },
  "manifest_version": 3,
  "name": "Live Thread Ticker",
  "permissions": [
    "storage"
  ],
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "iconSm.png",
      "32": "icon.png",
      "48": "icon.png",
      "128": "icon.png"
    }
  },
  "version": "1.8"
}