Tab Playlist for YouTube™

Tab Playlist for YouTube™

Lets you make a playlist by simply lining up tabs

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Tab Playlist for YouTube™",
  "short_name": "Tab Playlist",
  "version": "0.3",
  "description": "Lets you make a playlist by simply lining up tabs",
  "author": "/u/metarmask",
  "icons": {
    "128": "images/extension/icon-128.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "permissions": [
    "tabs",
    "storage",
    "declarativeContent",
    "https://www.youtube.com/"
  ],
  "page_action": {
    "default_icon": "images/pageAction/disabled.png",
    "default_title": "Click to enable\nWhen a the video finishes with this enabled the next tab will be selected if it's a YouTube one."
  },
  "options_ui": {
    "page": "options.html",
    "chrome_style": true
  },
  "web_accessible_resources": [
    "content-script-js-accesser.js"
  ]
}