Show YouTube Video Upload Date

Show YouTube Video Upload Date

Show full upload dates for videos and live streams on YouTube instead of "1 year ago", "2 weeks ago", etc.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_name__",
  "description": "__MSG_description__",
  "version": "4.0",
  "manifest_version": 3,
  "icons": {
    "16": "/images/icon-16.png",
    "32": "/images/icon-32.png",
    "48": "/images/icon-48.png",
    "128": "/images/icon-128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.youtube.com/*"
      ],
      "js": [
        "lib/moment-with-locales.2.30.1.min.js"
      ]
    },
    {
      "matches": [
        "https://www.youtube.com/*"
      ],
      "js": [
        "shared.min.js"
      ]
    },
    {
      "matches": [
        "https://www.youtube.com/*"
      ],
      "js": [
        "content.min.js"
      ]
    }
  ],
  "action": {
    "default_popup": "popup.min.html"
  },
  "default_locale": "en",
  "permissions": [
    "storage"
  ]
}