YouTube Views and Creation Date Styling

YouTube Views and Creation Date Styling

Changes view count and creation date CSS styling of YouTube videos for better visibility.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "YouTube Views and Creation Date Styling",
  "version": "1.0",
  "description": "Changes view count and creation date CSS styling of YouTube videos for better visibility.",
  "icons": {
    "16": "Icons/icon_16x16.png",
    "32": "Icons/icon_32x32.png",
    "48": "Icons/icon_48x48.png",
    "128": "Icons/icon_128x128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.youtube.com/*"
      ],
      "js": [
        "yt_views_date.js"
      ]
    }
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{01a3601f-fae8-4051-8bc1-8d532c29dd50}"
    }
  }
}