YOUTUBE QUEUE

Queue and control your youtube videos and keep the performance. Queues your Youtube videos with a click or the search bar in the app

Τι είναι το YOUTUBE QUEUE;

Το YOUTUBE QUEUE είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Koray, και η κύρια λειτουργία του είναι "Queue and control your youtube videos and keep the performance. Queues your Youtube videos with a click or the search bar in the app".

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

screenshot
screenshot
screenshot

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

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

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

                        Queues your Youtube videos easily with a click or the search bar in the app. Youtube does not let you queue  Youtube videos so i made this Youtube Queue app so you can queue your Youtube videos.
Has a very low impact on browser performance.

Features:
Easily add videos to the queue with the "+" button on any thumbnail.
Add any video through the quick search function in the popup!
You can control and manage your queue from other tabs to increase productivity!
Rearrange your queue by dragging and dropping!
All links leading to a youtube video can be added to the queue throught the right click menu!
Beautiful style that suits the youtube layout seamlessly.
Easy to manage which tab you want to queue the videos to!
Play the next queued video in any tab with the "next" button on the screen.
Use the queue chat to chat with other users!
Features Picture-In-Picture!

How to use:
1. Click the "+" button on any youtube video thumbnail!
Alternatively use the search bar in the popup app to find your youtube videos.
Ps. The Enter key will add the video on the top of the list

You can either wait for the queued video to play when the current video ends or click the video in the popup, 
or alternatively you can pick where the video will play next by clicking the Q in the bottom menu!

You can reorder the queue easily by dragging and dropping!

Happy Youtube ing!                    

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

Όνομα YOUTUBE QUEUE YOUTUBE QUEUE
ID haeailcifihaafhoelpckdbkdffnbnnk
Επίσημο URL https://chromewebstore.google.com/detail/youtube-queue/haeailcifihaafhoelpckdbkdffnbnnk
Περιγραφή Queue and control your youtube videos and keep the performance. Queues your Youtube videos with a click or the search bar in the app
Μέγεθος Αρχείου 60.89 KB
Αριθμός Εγκαταστάσεων 792
Τρέχουσα Έκδοση 6.7.6
Τελευταία Ενημέρωση 2021-10-21
Ημερομηνία Δημοσίευσης 2020-05-16
Αξιολόγηση 4.16/5 Συνολικά 19 Αξιολογήσεις
Προγραμματιστής Koray
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "YOUTUBE QUEUE",
    "description": "Queue and control your youtube videos and keep the performance. Queues your Youtube videos with a click or the search bar in the app",
    "version": "6.7.6",
    "permissions": [
        "https:\/\/www.youtube.com\/*",
        "contextMenus",
        "background",
        "storage",
        "tabs"
    ],
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Ctrl+Q",
                "mac": "Ctrl+Q"
            }
        },
        "playpause": {
            "suggested_key": {
                "default": "Ctrl+Shift+Q",
                "mac": "Ctrl+Shift+Q"
            },
            "description": "Play or pause current video.",
            "global": true
        }
    },
    "icons": {
        "128": "images\/icon1.png"
    },
    "browser_action": {
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_security_policy": "script-src 'self' 'unsafe-eval' https:\/\/www.gstatic.com\/ https:\/\/ajax.googleapis.com https:\/\/*.firebaseio.com https:\/\/www.googleapis.com\/ https:\/\/apis.google.com; object-src 'self'",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "css": [
                "contentCSS.css"
            ],
            "js": [
                "arrive.min.js",
                "content.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "images\/*"
    ]
}