YouTube Queue-To-Playlist

Simple button to convert current queue to playlist

Τι είναι το YouTube Queue-To-Playlist;

Το YouTube Queue-To-Playlist είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον thomas, και η κύρια λειτουργία του είναι "Simple button to convert current queue to playlist".

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

screenshot

Λήψη αρχείου CRX της επέκτασης YouTube Queue-To-Playlist

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

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

                        This is a very simple chrome extension that I put together in about an hour so that I can export my queue from YouTube to a playlist. 

If you have this extension enabled, you should see a "Save Queue" button next to the "Clear Queue" button. When you press it, your queue will be converted to an untitled playlist. 

Note: this extension is very basic and was created from my personal need to not lose good queues. 

However, there is a maximum amount of songs that it will convert (50 afaik).

If people find this useful and there is enough interest, I may spend some more time on it (and possibly use the "proper way" of converting to a playlist; aka through the API).                    

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

Όνομα YouTube Queue-To-Playlist YouTube Queue-To-Playlist
ID pimcaeohimnhdgpfgodokpknocmmkopf
Επίσημο URL https://chromewebstore.google.com/detail/youtube-queue-to-playlist/pimcaeohimnhdgpfgodokpknocmmkopf
Περιγραφή Simple button to convert current queue to playlist
Μέγεθος Αρχείου 75.72 KB
Αριθμός Εγκαταστάσεων 359
Τρέχουσα Έκδοση 1.0.0.1
Τελευταία Ενημέρωση 2020-02-12
Ημερομηνία Δημοσίευσης 2020-02-10
Αξιολόγηση 2.27/5 Συνολικά 11 Αξιολογήσεις
Προγραμματιστής thomas
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "YouTube Queue-To-Playlist",
    "description": "Simple button to convert current queue to playlist",
    "version": "1.0.0.1",
    "browser_action": {
        "default_icon": {
            "19": "images\/icon19.png",
            "38": "images\/icon38.png"
        },
        "default_title": "YouTube Queue-To-Playlist"
    },
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "64": "images\/icon64.png",
        "128": "images\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "\/js\/qtp.js"
            ],
            "css": [
                "\/css\/qtp.css"
            ]
        }
    ],
    "permissions": [
        "https:\/\/www.youtube.com\/*"
    ],
    "short_name": "YouTubeQTP"
}