Return YouTube Sort Artist

Return YouTube Sort Artist

YouTube disabled the ability to sort videos on artist channels. This extension tries to add that back.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Return YouTube Sort Artist",
  "version": "0.1.1",
  "description": "YouTube disabled the ability to sort videos on artist channels. This extension tries to add that back.",
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "content_scripts": [
    {
      "css": [
        "styles.css"
      ],
      "js": [
        "content.js"
      ],
      "matches": [
        "https://*.youtube.com/*"
      ]
    }
  ]
}