Youtube Remote

This extension allows you to remotely control Youtube songs

Τι είναι το Youtube Remote;

Το Youtube Remote είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Shubham Jindal, και η κύρια λειτουργία του είναι "This extension allows you to remotely control Youtube songs".

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

screenshot

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

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

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

                        Tired of opening the Youtube tab in Chrome to change songs or pause it? Introducing a Youtube Remote which can be used to control Youtube songs anywhere from your PC!

You can also change the Keyboard shortcuts by going to Keyboard Shortcuts in Chrome Extensions page(bottom right in chrome://extensions)

Youtube Remote allows you to play, pause, forward, next and previous song using the following default shortcuts:

*********Shortcuts*********
Ctrl/Cmd + Shift + 1 .   Pause/Play Song
Ctrl/Cmd + Shift + 2 .   Next Song
Ctrl/Cmd + Shift + 5 .   Forward Song by 10 seconds
Ctrl/Cmd + Shift + 6 .   Previous Song

PS: There should be only Youtube tab open. It controls the first Youtube tab                    

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

Όνομα Youtube Remote Youtube Remote
ID ololgenmdnakjpkcmphnllakhpbgcgdf
Επίσημο URL https://chrome.google.com/webstore/detail/youtube-remote/ololgenmdnakjpkcmphnllakhpbgcgdf
Περιγραφή This extension allows you to remotely control Youtube songs
Μέγεθος Αρχείου 19.25 KB
Αριθμός Εγκαταστάσεων 616
Τρέχουσα Έκδοση 2.0
Τελευταία Ενημέρωση 2017-09-11
Ημερομηνία Δημοσίευσης 2017-09-11
Αξιολόγηση 4.53/5 Συνολικά 17 Αξιολογήσεις
Προγραμματιστής Shubham Jindal
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Youtube Remote",
    "description": "This extension allows you to remotely control Youtube songs",
    "version": "2.0",
    "icons": {
        "128": "icon.png"
    },
    "content_security_policy": "connect-src http: https:; default-src 'self';",
    "permissions": [
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "file:\/\/*\/*"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "commands": {
        "next": {
            "suggested_key": {
                "default": "Ctrl+Shift+2",
                "mac": "Command+Shift+2"
            },
            "description": "Next Song",
            "global": true
        },
        "pause": {
            "suggested_key": {
                "default": "Ctrl+Shift+1",
                "mac": "Command+Shift+1"
            },
            "description": "Pause\/Play Song",
            "global": true
        },
        "previous": {
            "suggested_key": {
                "default": "Ctrl+Shift+5",
                "mac": "Command+Shift+5"
            },
            "description": "Previous song",
            "global": true
        },
        "forward": {
            "suggested_key": {
                "default": "Ctrl+Shift+6",
                "mac": "Command+Shift+6"
            },
            "description": "Forward song",
            "global": true
        }
    }
}