Sort by type(video or broadcast)
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": "Easy sorting of YouTube(Subscriptions) videos",
"description": "Sort by type(video or broadcast)",
"action": {
"default_title": "ESoY",
"default_icon": {
"19": "png/19.png"
},
"default_popup": "html/popup.html"
},
"homepage_url": "https://chromewebstore.google.com/detail/easy-sorting-of-youtubesu/dbkfimhhpafnhedemgpfpohglkjapgfi",
"icons": {
"16": "png/16.png",
"48": "png/48.png",
"128": "png/128.png"
},
"version": "1.3.3.65",
"manifest_version": 3,
"permissions": [
"activeTab",
"scripting",
"storage"
],
"options_page": "html/options.html",
"background": {
"service_worker": "js/storage.js"
},
"content_scripts": [
{
"js": [
"js/jquery.js",
"js/style.js"
],
"css": [
"css/style.css"
],
"matches": [
"https://www.youtube.com/*"
]
}
]
}