YouTube Timestamps to Playlist

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

Cos'è YouTube Timestamps to Playlist?

YouTube Timestamps to Playlist è un'estensione di Chrome sviluppata da hagabaka, e la sua funzione principale è "This extension creates a playlist from time tags on a YouTube page".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione YouTube Timestamps to Playlist

Scarica i file di estensione YouTube Timestamps to Playlist in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome YouTube Timestamps to Playlist YouTube Timestamps to Playlist
ID jmjgdfollcmomdjljhjkcenehcgbiogm
URL Ufficiale https://chromewebstore.google.com/detail/youtube-timestamps-to-pla/jmjgdfollcmomdjljhjkcenehcgbiogm
Descrizione This extension creates a playlist from time tags on a YouTube page
Dimensione del File 375 KB
Conteggio Installazioni 271
Versione Corrente 1.1
Ultimo Aggiornamento 2017-11-27
Data di Pubblicazione 2017-11-27
Valutazione 3.00/5 Totale 2 Valutazioni
Sviluppatore hagabaka
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/hagabaka/youtube-timestamps-to-playlist
Lingue Supportate 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"
    ]
}