YouTube Playlist

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

Was ist YouTube Playlist?

YouTube Playlist ist eine Chrome-Erweiterung, die von Ivan Chub entwickelt wurde, und ihr Hauptmerkmal ist "This extension transforms a youtube page that contains a video with multiple songs into a playlist".

Erweiterungsscreenshots

screenshot

YouTube Playlist-Erweiterungs-CRX-Datei herunterladen

Laden Sie YouTube Playlist-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

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

Grundlegende Informationen zur Erweiterung

Name YouTube Playlist YouTube Playlist
ID fpekldclcjpekfidkgfbgpffhbholbnd
Offizielle URL https://chrome.google.com/webstore/detail/youtube-playlist/fpekldclcjpekfidkgfbgpffhbholbnd
Beschreibung This extension transforms a youtube page that contains a video with multiple songs into a playlist
Dateigröße 34.28 KB
Installationsanzahl 237
Aktuelle Version 1.0
Letztes Update 2015-08-04
Veröffentlichungsdatum 2015-08-04
Bewertung 3.25/5 Insgesamt 4 Bewertungen
Entwickler Ivan Chub
Zahlungsart free
Unterstützte Sprachen 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"
    ]
}