YouTube Timestamps to Playlist

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

Hvad er YouTube Timestamps to Playlist?

YouTube Timestamps to Playlist er en Chrome-udvidelse udviklet af hagabaka, og dens hovedfunktion er "This extension creates a playlist from time tags on a YouTube page".

Udvidelsesskærmbilleder

screenshot

Download YouTube Timestamps to Playlist-udvidelses-CRX-fil

Download YouTube Timestamps to Playlist-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn YouTube Timestamps to Playlist YouTube Timestamps to Playlist
ID jmjgdfollcmomdjljhjkcenehcgbiogm
Officiel URL https://chromewebstore.google.com/detail/youtube-timestamps-to-pla/jmjgdfollcmomdjljhjkcenehcgbiogm
Beskrivelse This extension creates a playlist from time tags on a YouTube page
Filstørrelse 375 KB
Antal Installationer 271
Nuværende Version 1.1
Senest Opdateret 2017-11-27
Udgivelsesdato 2017-11-27
Bedømmelse 3.00/5 Samlet 2 Bedømmelser
Udvikler hagabaka
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://github.com/hagabaka/youtube-timestamps-to-playlist
Understøttede Sprog 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"
    ]
}