Tabs Playlist for Youtube

Tabs Playlist for Youtube

Simply manage your "playlist" by ordering your youtube tabs.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Tabs Playlist for Youtube",
  "short_name": "TabPlaylistr",
  "version": "0.0.1.0",
  "manifest_version": 2,
  "description": "Simply manage your \"playlist\" by ordering your youtube tabs.",
  "icons": {
    "16": "image16.png",
    "48": "image48.png",
    "128": "image128.png"
  },
  "permissions": [
    "tabs",
    "*://*.youtube.com/watch?*"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*.youtube.com/watch?*"
      ],
      "js": [
        "jquery.js",
        "contentScript.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "web_accessible_resources": [
    "jquery.js",
    "youtube.js",
    "jquery.min.map"
  ],
  "externally_connectable": {
    "matches": [
      "*://*.youtube.com/watch?*"
    ],
    "ids": [
      "*"
    ],
    "accepts_tls_channel_id": false
  },
  "page_action": {
    "default_icon": {
      "19": "icon19.png",
      "38": "icon38.png"
    },
    "default_title": "Tabs Playlist for Youtube - enabled"
  }
}