Return YouTube Comment Username

Return YouTube Comment Username

This script replaces the "handle" in the YouTube comments section to user name

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_Name__",
  "short_name": "name",
  "version": "0.5.2",
  "manifest_version": 3,
  "description": "__MSG_Description__",
  "default_locale": "en",
  "icons": {
    "16": "assets/icon16.png",
    "48": "assets/icon48.png",
    "128": "assets/icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.youtube.com/*"
      ],
      "js": [
        "index-KSXYPH4P.js"
      ],
      "world": "MAIN",
      "run_at": "document_end"
    }
  ],
  "action": {
    "default_popup": "popup/popup.html"
  },
  "background": {
    "service_worker": "sw-6QJVUHBR.js"
  }
}