Enlarge Profile Image for YouTube™

Enlarge Profile Image for YouTube™

A chrome extension that makes it possible to enlarge the profile image in YouTube profiles by clicking on it.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Enlarge Profile Image for YouTube™",
  "description": "A chrome extension that makes it possible to enlarge the profile image in YouTube profiles by clicking on it.",
  "manifest_version": 3,
  "version": "1.0.4",
  "icons": {
    "16": "assets/img/icon16.png",
    "48": "assets/img/icon48.png",
    "128": "assets/img/icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.youtube.com/*"
      ],
      "js": [
        "assets/js/jquery.js",
        "assets/js/content.js"
      ]
    }
  ]
}