YouTube video timestamps

YouTube video timestamps

Displays YouTube video timecodes from descriptions and comments.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "icons": {
    "128": "/icon.png"
  },
  "manifest_version": 2,
  "background": {
    "scripts": [
      "/js/chrome.js"
    ]
  },
  "permissions": [
    "https://*.youtube.com/*"
  ],
  "name": "YouTube video timestamps",
  "default_locale": "en",
  "description": "Displays YouTube video timecodes from descriptions and comments.",
  "browser_action": {
    "default_icon": "/icon.png",
    "default_popup": "/options.html"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "css": [
        "/styles/page_styles.css"
      ],
      "js": [
        "/js/content.js"
      ],
      "matches": [
        "https://*.youtube.com/*"
      ]
    }
  ],
  "web_accessible_resources": [
    "styles/*.css",
    "*.js"
  ],
  "version": "1.0"
}