YT Studio Config

YT Studio Config

Removes ranking by views and a few other useless elements on the dashboard

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "YT Studio Config",
  "description": "Removes ranking by views and a few other useless elements on the dashboard",
  "version": "1.01",
  "manifest_version": 3,
  "content_scripts": [
    {
      "matches": [
        "https://studio.youtube.com/channel/*"
      ],
      "run_at": "document_end",
      "js": [
        "studio.js"
      ],
      "icons": {
        "128": "icon128.png"
      }
    }
  ]
}