Playlist generator

Turns your unused, youtube bookmarks that are laying around into a playlist loop for hours of entertainment!

Τι είναι το Playlist generator;

Το Playlist generator είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον James Hahn, και η κύρια λειτουργία του είναι "Turns your unused, youtube bookmarks that are laying around into a playlist loop for hours of entertainment!".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Playlist generator

Λήψη αρχείων επέκτασης Playlist generator σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        Do you find yourself bookmarking youtube videos/songs that you like?  If you do, this chrome extension is for you.  When you install it, the user-friendly interface displays three easy steps for you to follow: locate the folders that hold your youtube bookmarks (my folder names are "Music", "Music 2", and "Music 3"), type in the names of those folders into the extension separated by a comma ("Music,Music 2,Music 3"), and finally, choose whether to listen to the songs in-order or shuffled and you'll begin listening to hours of music.

First, disable auto-play on Youtube. Then, after you click the "Shuffle" or "In-order" button in the extension, a small window will appear and you can relax from there on out; the chrome extension will automatically select a new song and play it once the old song is over.

v1.0 - Initial release.
v1.1 - Fixed bug in v1.1 where songs were still duplicating.
v1.2 (01/25/19) - Fixed bug where unavailable/deprecated/removed/country-blocked videos are automatically skipped and banned to assure they never reappear.
v1.3 (02/02/20) - Completely refactored code and reduced pause time between song transition.
v2.0 (06/01/20) - Reset versioning system to do it properly. Removed scrollbar removal feature and fixed some UI issues.
v2.2 (06/02/20) - Added functionality to store a user's 5 most recent playlists. Also added error messages for empty bookmark folders/playlists.
v2.3 (11/28/20) - Fixed a few bugs with error messages and button functionality.
v3.0 (12/30/21) - Upgraded from Manifest v2 to Manifest v3

This extension is also available as a Firefox add-on : https://addons.mozilla.org/en-US/firefox/addon/music-playlist-generator/                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Playlist generator Playlist generator
ID gcnopleiakgahapanbdcegkccdifbbae
Επίσημο URL https://chromewebstore.google.com/detail/playlist-generator/gcnopleiakgahapanbdcegkccdifbbae
Περιγραφή Turns your unused, youtube bookmarks that are laying around into a playlist loop for hours of entertainment!
Μέγεθος Αρχείου 52.92 KB
Αριθμός Εγκαταστάσεων 587
Τρέχουσα Έκδοση 3.0.4
Τελευταία Ενημέρωση 2023-12-18
Ημερομηνία Δημοσίευσης 2020-06-04
Αξιολόγηση 4.22/5 Συνολικά 18 Αξιολογήσεις
Προγραμματιστής James Hahn
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
URL της Σελίδας Πολιτικής Απορρήτου https://www.jameshahn.me/playlist-generator-privacy-policy.html
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Playlist generator",
    "short_name": "Playlist gen.",
    "description": "Turns your unused, youtube bookmarks that are laying around into a playlist loop for hours of entertainment!",
    "version": "3.0.4",
    "content_security_policy": "script-src 'self'; object-src 'self'",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": "extension-logo.png",
        "default_popup": "popup.html",
        "default_title": "Playlist Generator"
    },
    "permissions": [
        "activeTab",
        "bookmarks",
        "https:\/\/www.youtube.com\/*",
        "storage"
    ]
}