YouTube Playlist

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

Hvad er YouTube Playlist?

YouTube Playlist er en Chrome-udvidelse udviklet af Ivan Chub, og dens hovedfunktion er "This extension transforms a youtube page that contains a video with multiple songs into a playlist".

Udvidelsesskærmbilleder

screenshot

Download YouTube Playlist-udvidelses-CRX-fil

Download YouTube Playlist-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

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

Grundlæggende oplysninger om udvidelsen

Navn YouTube Playlist YouTube Playlist
ID fpekldclcjpekfidkgfbgpffhbholbnd
Officiel URL https://chrome.google.com/webstore/detail/youtube-playlist/fpekldclcjpekfidkgfbgpffhbholbnd
Beskrivelse This extension transforms a youtube page that contains a video with multiple songs into a playlist
Filstørrelse 34.28 KB
Antal Installationer 237
Nuværende Version 1.0
Senest Opdateret 2015-08-04
Udgivelsesdato 2015-08-04
Bedømmelse 3.25/5 Samlet 4 Bedømmelser
Udvikler Ivan Chub
Betalingsmetode free
Understøttede Sprog 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"
    ]
}