YouTube Playlist

This extension transforms a youtube page that contains a video with multiple songs into a playlist

Wat is YouTube Playlist?

YouTube Playlist is een Chrome-extensie ontwikkeld door Ivan Chub, en de belangrijkste functie is "This extension transforms a youtube page that contains a video with multiple songs into a playlist".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie YouTube Playlist

Download YouTube 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

                        If you would like to contribute, go here: https://github.com/ichub/youtube-playlist                    

Basisinformatie over de Extensie

Naam YouTube Playlist YouTube Playlist
ID fpekldclcjpekfidkgfbgpffhbholbnd
Officiële URL https://chrome.google.com/webstore/detail/youtube-playlist/fpekldclcjpekfidkgfbgpffhbholbnd
Beschrijving This extension transforms a youtube page that contains a video with multiple songs into a playlist
Bestandsgrootte 34.28 KB
Aantal Installaties 237
Huidige Versie 1.0
Laatst Bijgewerkt 2015-08-04
Publicatiedatum 2015-08-04
Beoordeling 3.25/5 Totaal 4 Beoordelingen
Ontwikkelaar Ivan Chub
Betalingswijze free
Ondersteunde Talen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "YouTube Playlist",
    "description": "This extension transforms a youtube page that contains a video with multiple songs into a playlist",
    "version": "1.0",
    "permissions": [
        "activeTab",
        "tabs",
        "https:\/\/www.youtube.com\/*",
        "http:\/\/www.youtube.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "css": [
                "injected.css"
            ],
            "js": [
                "jquery.min.js",
                "injected.js"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        "injected.html"
    ]
}