YouTube Timestamp Comments

YouTube Timestamp Comments

An extension that lists timestamp comments on YouTube.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "YouTube Timestamp Comments",
  "version": "0.9.1",
  "manifest_version": 3,
  "description": "An extension that lists timestamp comments on YouTube.",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "background": {
    "service_worker": "js/background/background.js"
  },
  "action": {
    "default_icon": "icons/icon19.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.youtube.com/watch*"
      ],
      "js": [
        "js/content_scripts/contentScript.js"
      ]
    }
  ],
  "permissions": [
    "declarativeContent",
    "storage",
    "activeTab",
    "scripting"
  ]
}