Youtube Playlist Sorter

Youtube Playlist Sorter

Sort any Youtube playlist length-wise

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Youtube playlist sorter",
  "description": "Sort your playlist length-wise",
  "version": "1.0",
  "manifest_version": 2,
  "browser_action": {
    "default_popup": "index.html",
    "default_title": "Open the sorter popup"
  },
  "permissions": [
    "activeTab"
  ],
  "optional_permissions": [
    "<all_urls>"
  ],
  "icons": {
    "16": "yt16.png",
    "48": "yt48.png",
    "128": "yt128.png",
    "512": "yt512.png"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "./static/js/content.js"
      ],
      "all_frames": false,
      "run_at": "document_end"
    }
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{70ed4752-5f31-4380-b936-d6ac615e8916}"
    }
  }
}