Sort your Youtube Playlists alphabetically by default
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"update_url": "https://clients2.google.com/service/update2/crx",
"name": "Youtube Playlist alphabetical A-Z sorting",
"description": "Sort your Youtube Playlists alphabetically by default",
"version": "1.0.0",
"manifest_version": 3,
"icons": {
"16": "logo_128.png",
"32": "logo_128.png",
"48": "logo_128.png",
"128": "logo_128.png"
},
"content_scripts": [
{
"matches": [
"https://*.youtube.com/",
"https://*.youtube.com/*"
],
"js": [
"content-script-dist.js"
],
"run_at": "document_end"
}
]
}