Youtube Remote

This extension allows you to remotely control Youtube songs

Youtube Remote란 무엇입니까?

Youtube Remote은(는) Shubham Jindal에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension allows you to remotely control Youtube songs"입니다.

확장 프로그램 스크린샷

screenshot

Youtube Remote 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
        }
    }
}