YouTube Time Labels

YouTube Time Labels

A Chrome Extension for saving labelled timestamps of YouTube videos

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "YouTube Time Labels",
  "short_name": "YT Time Labels",
  "version": "1.1.0",
  "author": "Brian Lin",
  "description": "A Chrome Extension for saving labelled timestamps of YouTube videos",
  "icons": {
    "16": "/images/icon16.png",
    "48": "/images/icon48.png",
    "128": "/images/icon128.png"
  },
  "permissions": [
    "storage",
    "activeTab",
    "downloads"
  ],
  "action": {
    "default_title": "YouTube Time Labels Popup",
    "default_popup": "/html/popup.html"
  },
  "content_scripts": [
    {
      "run_at": "document_idle",
      "js": [
        "/js/content.bundle.js"
      ],
      "matches": [
        "https://www.youtube.com/*"
      ]
    }
  ],
  "background": {
    "service_worker": "./background.js"
  },
  "commands": {
    "add-timestamp": {
      "suggested_key": {
        "default": "Ctrl+Shift+Q",
        "mac": "Command+Shift+E"
      },
      "description": "Record current timestamp"
    }
  }
}