Easy sorting of YouTube(Subscriptions) videos

Easy sorting of YouTube(Subscriptions) videos

Sort by type(video or broadcast)

Merlin
Additional files are visible only to premium users

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.35",
  "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/*"
      ]
    }
  ]
}