TimeTags for YouTube

TimeTags for YouTube

Create YouTube time tags with simple keyboard shortcuts

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "TimeTags for YouTube",
  "version": "1.5.0",
  "manifest_version": 2,
  "description": "Create YouTube time tags with simple keyboard shortcuts",
  "icons": {
    "16": "images/icon-16.png",
    "128": "images/icon-128.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.youtube.com/*",
        "*://youtube.com/*",
        "*://youtu.be/*"
      ],
      "js": [
        "ytapi.js"
      ],
      "run_at": "document_end",
      "all_frames": false
    }
  ],
  "browser_action": {
    "default_icon": {
      "19": "images/icon-19.png",
      "38": "images/icon-38.png"
    },
    "default_title": "TimeTags for YouTube"
  },
  "permissions": [
    "storage",
    "https://www.youtube.com/",
    "https://youtu.be/"
  ],
  "web_accessible_resources": [
    "contentscript.js.map",
    "*.png"
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "[email protected]",
      "strict_min_version": "78.0"
    }
  }
}