YouTube Timestamps to Playlist

YouTube Timestamps to Playlist

When viewing a video on YouTube containing multiple songs, this extension builds a playlist with "time tags" found on the page. It allows you to easily seek within a song or change to another track. It also displays a "now playing" notification.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "YouTube Timestamps to Playlist",
  "description": "This extension creates a playlist from time tags on a YouTube page",
  "version": "1.2resigned1",
  "icons": {
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "background": {
    "scripts": [
      "common.js",
      "background.js"
    ]
  },
  "page_action": {
    "default_icon": "icon48.png",
    "default_title": "Playlist",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.youtube.com/watch*"
      ],
      "js": [
        "common.js",
        "content-script.js"
      ]
    }
  ],
  "permissions": [
    "notifications"
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{af7d93a7-96ad-437c-a78b-c439f7ad8c7e}"
    }
  }
}