YouTube Timestamps to Playlist

This extension creates a playlist from time tags on a YouTube page

What is YouTube Timestamps to Playlist?

YouTube Timestamps to Playlist is a Chrome extension developed by hagabaka, and its main feature is "This extension creates a playlist from time tags on a YouTube page".

Extension Screenshots

screenshot

Download YouTube Timestamps to Playlist Extension CRX File

Download YouTube Timestamps to Playlist extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        When viewing a video on YouTube containing multiple songs, this extension looks for a list of "time tags", for example "0:40 Symphony No. 5 in C Minor", and builds a playlist. You can open the playlist with one click, and easily change to a different song or seek within the song. It also displays a notification when a new song starts playing.                    

Extension Basic Information

Name YouTube Timestamps to Playlist YouTube Timestamps to Playlist
ID jmjgdfollcmomdjljhjkcenehcgbiogm
Official URL https://chromewebstore.google.com/detail/youtube-timestamps-to-pla/jmjgdfollcmomdjljhjkcenehcgbiogm
Description This extension creates a playlist from time tags on a YouTube page
File Size 375 KB
Installation Count 271
Current Version 1.1
Last Updated 2017-11-27
Publish Date 2017-11-27
Rating 3.00/5 Total 2 Ratings
Developer hagabaka
Email [email protected]
Payment Type free
Extension Website https://github.com/hagabaka/youtube-timestamps-to-playlist
Supported Languages en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "YouTube Timestamps to Playlist",
    "description": "This extension creates a playlist from time tags on a YouTube page",
    "version": "1.1",
    "icons": {
        "128": "icon128.png",
        "48": "icon48.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"
    ]
}