Delta for YouTube

Delta for YouTube

Show a time difference in the YouTube progress bar.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Delta for YouTube",
  "short_name": "Delta",
  "description": "Show a time difference in the YouTube progress bar.",
  "version": "1.5",
  "icons": {
    "16": "icons/delta-16.png",
    "48": "icons/delta-48.png",
    "128": "icons/delta-128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.youtube.com/*"
      ],
      "css": [
        "delta.css"
      ],
      "js": [
        "node_modules/moment/min/moment.min.js",
        "delta.js"
      ]
    }
  ]
}