YouTube Timestamps

YouTube Timestamps

Shows YouTube timestamps from comments.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "YouTube Timestamps",
  "description": "Shows YouTube timestamps from comments.",
  "version": "0.9.1",
  "applications": {
    "gecko": {
      "id": "youtube-timestamps@ris58h"
    }
  },
  "permissions": [
    "https://www.youtube.com/*",
    "webRequest",
    "webRequestBlocking"
  ],
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.youtube.com/*",
        "https://www.youtube-nocookie.com/embed/*"
      ],
      "all_frames": true,
      "js": [
        "content/content.js"
      ],
      "css": [
        "content/content.css"
      ]
    }
  ],
  "web_accessible_resources": [
    "background/youtubei.js"
  ],
  "background": {
    "page": "background/background.html"
  }
}