YouTube Queue

Dynamic playlist turns your YouTube into a better music player.

Τι είναι το YouTube Queue;

Το YouTube Queue είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον corylulu, και η κύρια λειτουργία του είναι "Dynamic playlist turns your YouTube into a better music player.".

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

screenshot

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

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

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

                        ► v1.4.6
- Re-enables ability to revert to old Youtube (6/21/2020)
► v1.4.3 - v1.4.5
- Minor fixes
► v1.4.2
- Still doesn't work on new re-design, but prompts users to automatically restore the older version of YouTube. 
- Works offline now
- Fixes a few bugs and stylistic issues. 


Add videos to a queue / real-time playlist that will automatically play when any video finishes on YouTube. Queue syncs to all tabs instantly. Great for a totally hands off way to watch all the videos in your subscription feed or go through a music playlist at work without having to go through the cumbersome YouTube playlist process.  

Additionally, video player will fill whatever available screen space it has so having to fullscreen the window won’t be as big of an issue.

I made this for personal use, so support for bugs may be minimal, but feel free to use it if you'd like. 

/r/corylulu                    

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

Όνομα YouTube Queue YouTube Queue
ID bloiabahpbjnkoklboglkmccophehhda
Επίσημο URL https://chrome.google.com/webstore/detail/youtube-queue/bloiabahpbjnkoklboglkmccophehhda
Περιγραφή Dynamic playlist turns your YouTube into a better music player.
Μέγεθος Αρχείου 267 KB
Αριθμός Εγκαταστάσεων 429
Τρέχουσα Έκδοση 1.4.6
Τελευταία Ενημέρωση 2020-06-22
Ημερομηνία Δημοσίευσης 2020-06-22
Αξιολόγηση 3.25/5 Συνολικά 12 Αξιολογήσεις
Προγραμματιστής corylulu
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "author": "corylulu",
    "content_scripts": [
        {
            "css": [
                "style.css",
                "style_ratings.css"
            ],
            "js": [
                "jquery-1.11.3.min.js",
                "arrive.min.js",
                "jquery-ui.js",
                "main.js",
                "youtube.js",
                "search.js",
                "script.js"
            ],
            "matches": [
                "http:\/\/www.youtube.com\/*",
                "http:\/\/youtube.com\/*",
                "https:\/\/www.youtube.com\/*",
                "https:\/\/youtube.com\/*"
            ],
            "all_frames": false,
            "run_at": "document_start"
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_security_policy": "script-src 'self' https:\/\/www.googleapis.com; object-src 'self'",
    "description": "Dynamic playlist turns your YouTube into a better music player.",
    "icons": {
        "128": "icon128.png",
        "16": "icon16.png",
        "48": "icon48.png"
    },
    "manifest_version": 2,
    "minimum_chrome_version": "45",
    "name": "YouTube Queue",
    "permissions": [
        "storage",
        "background",
        "webRequest",
        "webRequestBlocking",
        "https:\/\/www.googleapis.com\/youtube\/v3\/*",
        "https:\/\/*.youtube.com\/"
    ],
    "optional_permissions": [],
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "1.4.6",
    "web_accessible_resources": [
        "style.css",
        "video.js",
        "disablePolymer.js",
        "remove.png",
        "show.png",
        "hide.png",
        "search.png",
        "clear.png",
        "pause.png",
        "play.png",
        "icon16.png",
        "icon24.png",
        "youtubeLogo.png"
    ]
}