YouTube Timestamps to Playlist
This extension creates a playlist from time tags on a YouTube page
Qu'est-ce que YouTube Timestamps to Playlist ?
YouTube Timestamps to Playlist est une extension Chrome développée par hagabaka, et sa fonction principale est "This extension creates a playlist from time tags on a YouTube page".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension YouTube Timestamps to Playlist
Téléchargez les fichiers d'extension YouTube Timestamps to Playlist au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | YouTube Timestamps to Playlist |
ID | jmjgdfollcmomdjljhjkcenehcgbiogm |
URL Officiel | https://chromewebstore.google.com/detail/youtube-timestamps-to-pla/jmjgdfollcmomdjljhjkcenehcgbiogm |
Description | This extension creates a playlist from time tags on a YouTube page |
Taille du Fichier | 375 KB |
Nombre d'Installations | 271 |
Version Actuelle | 1.1 |
Dernière Mise à Jour | 2017-11-27 |
Date de Publication | 2017-11-27 |
Évaluation | 3.00/5 Total 2 Évaluations |
Développeur | hagabaka |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/hagabaka/youtube-timestamps-to-playlist |
Langues Prises en Charge | 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" ] } |