IMDb Sort Episodes By Rating

Add a button to sort tv show episodes by rating on IMDb.com
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "description": "Add a button to sort tv show episodes by rating on IMDb.com",
  "manifest_version": 3,
  "name": "IMDb Sort Episodes By Rating",
  "version": "1.22",
  "author": "AlexisDrain",
  "homepage_url": "https://github.com/AlexisDrain/IMDb-Sort-Episodes-By-Rating",
  "icons": {
    "128": "icons/favicon_128.png"
  },
  "content_scripts": [
    {
      "run_at": "document_end",
      "matches": [
        "*://*.imdb.com/*"
      ],
      "js": [
        "contentscript.js"
      ]
    }
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{a1c93c36-1951-4f6a-9366-8f8e33ed2368}"
    }
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}