YouTube Playlist Helper
YouTube playlist editor and generator
Was ist YouTube Playlist Helper?
YouTube Playlist Helper ist eine Chrome-Erweiterung, die von Soufiane Sakhi entwickelt wurde, und ihr Hauptmerkmal ist "YouTube playlist editor and generator".
Erweiterungsscreenshots
YouTube Playlist Helper-Erweiterungs-CRX-Datei herunterladen
Laden Sie YouTube Playlist Helper-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
Features: + A complete playlist editor: add, delete, reorder, reverse, remove duplicates, import and export videos. + Queue up videos from any page (with the right-click context menu) and play or save them using the playlist builder. + Save playlists using your browser's sync storage. + Generate YouTube anonymous playlists by: - Selecting a folder bookmark - Pasting the YouTube text urls (links) in a form - From currently open YouTube tabs (combine) - From current tab YouTube video thumbnails - From current tab YouTube links (HTML parsing) (the generated playlists are also saved and can be viewed in the playlist editor's recently created playlists page) + Convert current YouTube playlist tab to YouTube queue As featured in: https://simply-how.com/play-youtube-videos-in-succession Official page: https://github.com/soufianesakhi/youtube-playlist-helper
Grundlegende Informationen zur Erweiterung
Name | YouTube Playlist Helper |
ID | ibdakohjhchaagmccfedeejmeillongg |
Offizielle URL | https://chromewebstore.google.com/detail/youtube-playlist-helper/ibdakohjhchaagmccfedeejmeillongg |
Beschreibung | YouTube playlist editor and generator |
Dateigröße | 63.73 KB |
Installationsanzahl | 6,320 |
Aktuelle Version | 2.12.2 |
Letztes Update | 2023-12-28 |
Veröffentlichungsdatum | 2020-07-04 |
Bewertung | 4.10/5 Insgesamt 49 Bewertungen |
Entwickler | Soufiane Sakhi |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/soufianesakhi/youtube-playlist-helper |
Unterstützte Sprachen | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "YouTube Playlist Helper", "description": "YouTube playlist editor and generator", "version": "2.12.2", "manifest_version": 2, "icons": { "48": "icons\/icon_48.png", "128": "icons\/icon_128.png" }, "options_ui": { "page": "options\/options.html", "open_in_tab": true }, "browser_action": { "default_title": "YouTube Playlist Helper", "browser_style": true, "default_popup": "popup\/popup.html" }, "background": { "scripts": [ "browser-polyfill.min.js", "editor\/storage-service.js", "editor\/video-service.js", "editor\/utils.js", "background.js" ] }, "permissions": [ "bookmarks", "tabs", "storage", "notifications", "activeTab", "contextMenus", "https:\/\/www.youtube.com\/watch*", "https:\/\/www.youtube.com\/playlist*" ], "browser_specific_settings": { "gecko": { "id": "{c3d5f138-77cb-461e-b553-f82bf70fecf7}" } } } |