YouTube Control Center

YouTube popup pause and resume as well as no buffer, HD quality, wide screen, ...

Τι είναι το YouTube Control Center;

Το YouTube Control Center είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον InBasic, και η κύρια λειτουργία του είναι "YouTube popup pause and resume as well as no buffer, HD quality, wide screen, ...".

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

screenshot

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

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

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

                        YouTube Control Center is a browser extension to control YouTube pages from a toolbar popup. You can pause, resume, stop, move to the next or previous tracks right from the popup without the need to switch to the YouTube tab. Note that if there is no open YouTube tab, by pressing the toolbar button, a new YouTube page is opened. When the player starts to playing the video, popup is ready.

Using this extension you can also control page layout as well as the player behaviours like:
1. Stop player from buffering media
2. Change quality to HD (HD2160p, HD1440p, HD1080p, HD720p)
3. Prevent the player from displaying annotations
4. Prevent the player from starting the next track when the current one is finished

For more info please visit:
http://add0n.com/control-center.html

Logs:
0.5.1: adds a new feature: Buffer video without starting it
0.5.2: the popup is now displayed when there is an open YouTube page. No buffering functionality is improved.
0.5.3: Supports YouTube history                    

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

Όνομα YouTube Control Center YouTube Control Center
ID boplfaeblpnpahldaijlikpgdbgdmhko
Επίσημο URL https://chromewebstore.google.com/detail/youtube-control-center/boplfaeblpnpahldaijlikpgdbgdmhko
Περιγραφή YouTube popup pause and resume as well as no buffer, HD quality, wide screen, ...
Μέγεθος Αρχείου 102 KB
Αριθμός Εγκαταστάσεων 11,264
Τρέχουσα Έκδοση 0.6.3
Τελευταία Ενημέρωση 2018-04-19
Ημερομηνία Δημοσίευσης 2018-04-19
Αξιολόγηση 3.22/5 Συνολικά 69 Αξιολογήσεις
Προγραμματιστής InBasic
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης http://add0n.com/control-center.html
Διεύθυνση URL της Σελίδας Βοήθειας http://add0n.com/control-center.html
URL της Σελίδας Πολιτικής Απορρήτου https://add0n.com/policies/inb.cor.txt
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "YouTube Control Center",
    "short_name": "iycc",
    "description": "YouTube popup pause and resume as well as no buffer, HD quality, wide screen, ...",
    "author": "InBasic",
    "version": "0.6.3",
    "manifest_version": 2,
    "permissions": [
        "storage",
        "tabs",
        "cookies",
        "*:\/\/*.youtube.com\/*"
    ],
    "background": {
        "persistent": false,
        "scripts": [
            "common.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.youtube.com\/*"
            ],
            "js": [
                "data\/page.js",
                "data\/controls.js",
                "data\/no_buffer.js",
                "data\/quality.js",
                "data\/next_track.js",
                "data\/css.js"
            ],
            "run_at": "document_start",
            "all_frames": false
        }
    ],
    "icons": {
        "16": "data\/icons\/16.png",
        "32": "data\/icons\/32.png",
        "48": "data\/icons\/48.png",
        "64": "data\/icons\/64.png"
    },
    "browser_action": {
        "default_icon": {
            "16": "data\/icons\/16.png",
            "32": "data\/icons\/32.png",
            "48": "data\/icons\/48.png",
            "64": "data\/icons\/64.png"
        },
        "default_title": "YouTube Control Center\n\n-> Opens YouTube when no player is detected.\n-> Displays the control popup when there is at least one YouTube player"
    },
    "homepage_url": "http:\/\/add0n.com\/control-center.html",
    "commands": {
        "pause": {
            "description": "Stat the player"
        },
        "stop": {
            "description": "Stop the player"
        },
        "play": {
            "description": "Pause the player"
        },
        "next": {
            "description": "Move to the next track"
        },
        "previous": {
            "description": "Move to the previous track"
        }
    }
}