YouTube Timestamps to Playlist

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

Was ist YouTube Timestamps to Playlist?

YouTube Timestamps to Playlist ist eine Chrome-Erweiterung, die von hagabaka entwickelt wurde, und ihr Hauptmerkmal ist "This extension creates a playlist from time tags on a YouTube page".

Erweiterungsscreenshots

screenshot

YouTube Timestamps to Playlist-Erweiterungs-CRX-Datei herunterladen

Laden Sie YouTube Timestamps to Playlist-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name YouTube Timestamps to Playlist YouTube Timestamps to Playlist
ID jmjgdfollcmomdjljhjkcenehcgbiogm
Offizielle URL https://chromewebstore.google.com/detail/youtube-timestamps-to-pla/jmjgdfollcmomdjljhjkcenehcgbiogm
Beschreibung This extension creates a playlist from time tags on a YouTube page
Dateigröße 375 KB
Installationsanzahl 271
Aktuelle Version 1.1
Letztes Update 2017-11-27
Veröffentlichungsdatum 2017-11-27
Bewertung 3.00/5 Insgesamt 2 Bewertungen
Entwickler hagabaka
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/hagabaka/youtube-timestamps-to-playlist
Unterstützte Sprachen 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"
    ]
}