TV for Reddit

TV for Reddit

Plays all videos on a Reddit page sequentially. Designed for NBA Reddit.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "version": "1.16",
  "name": "TV for Reddit",
  "short_name": "TV for Reddit",
  "description": "Plays all videos on a Reddit page sequentially. Designed for NBA Reddit.",
  "homepage_url": "https://georgemike.com",
  "default_locale": "en",
  "icons": {
    "128": "images/icon.128.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "images/icon.128.png"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "options_page": "options.html",
  "action": {
    "default_icon": {
      "128": "images/icon.128.png"
    },
    "default_title": "TV for Reddit"
  },
  "background": {
    "service_worker": "js/background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.twitch.tv/*",
        "https://*.instagram.com/*",
        "https://instagram.com/*",
        "https://*.youtube.com/*",
        "https://youtube.com/*",
        "https://*.streamable.com/*",
        "https://streamable.com/*",
        "https://*.streamja.com/*",
        "https://streamja.com/*",
        "https://*.reddit.com/*",
        "https://reddit.com/*"
      ],
      "js": [
        "js/Config.js",
        "js/PlaylistTracker.js",
        "js/RedditModifier.js",
        "js/RnbaAction.js",
        "js/UrlType.js",
        "js/Utils.js",
        "js/content.js"
      ],
      "css": [
        "css/tv.css"
      ],
      "all_frames": true
    }
  ],
  "permissions": [
    "storage"
  ],
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "default": "Alt+Shift+B",
        "windows": "Alt+Shift+B",
        "mac": "Alt+B"
      }
    }
  }
}