YouTube Timestamps to Playlist
This extension creates a playlist from time tags on a YouTube page
Wat is YouTube Timestamps to Playlist?
YouTube Timestamps to Playlist is een Chrome-extensie ontwikkeld door hagabaka, en de belangrijkste functie is "This extension creates a playlist from time tags on a YouTube page".
Extensie Screenshots
Download het CRX-bestand van de extensie YouTube Timestamps to Playlist
Download YouTube Timestamps to Playlist-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | YouTube Timestamps to Playlist |
ID | jmjgdfollcmomdjljhjkcenehcgbiogm |
Officiële URL | https://chromewebstore.google.com/detail/youtube-timestamps-to-pla/jmjgdfollcmomdjljhjkcenehcgbiogm |
Beschrijving | This extension creates a playlist from time tags on a YouTube page |
Bestandsgrootte | 375 KB |
Aantal Installaties | 271 |
Huidige Versie | 1.1 |
Laatst Bijgewerkt | 2017-11-27 |
Publicatiedatum | 2017-11-27 |
Beoordeling | 3.00/5 Totaal 2 Beoordelingen |
Ontwikkelaar | hagabaka |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://github.com/hagabaka/youtube-timestamps-to-playlist |
Ondersteunde Talen | 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" ] } |