Youtube playback control

Control all youtube tabs from any tab any window.

Youtube playback control란 무엇입니까?

Youtube playback control은(는) Ankit Shah에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Control all youtube tabs from any tab any window."입니다.

확장 프로그램 스크린샷

screenshot

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

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

확장 프로그램 사용 설명서

                        This is a chrome extension which will allow you to play, pause or jump to next youtube videos running across all tabs in all windows. Press the row containing title and it toggles the state of tab playing youtube video. You need to reload tabs once after installing the extension.

Now also supports jumping to particular tab and closing the tab.

The extension is open source so feel free to add any issues or pull requests on https://github.com/shahankit/youtube-playback-control.                    

확장 프로그램 기본 정보

이름 Youtube playback control Youtube playback control
ID okbcoijdeebocmahlanbfemnckjonfnh
공식 URL https://chrome.google.com/webstore/detail/youtube-playback-control/okbcoijdeebocmahlanbfemnckjonfnh
설명 Control all youtube tabs from any tab any window.
파일 크기 46.5 KB
설치 횟수 582
현재 버전 0.1.4
최근 업데이트 2017-09-11
출시 날짜 2017-09-11
평점 4.41/5 총 27 개의 평점
개발자 Ankit Shah
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Youtube playback control",
    "version": "0.1.4",
    "description": "Control all youtube tabs from any tab any window.",
    "browser_action": {
        "default_icon": {
            "19": "assets\/icon.png",
            "38": "assets\/[email protected]"
        },
        "default_popup": "views\/popup\/index.html",
        "default_title": "Youtube Tabs"
    },
    "permissions": [
        "tabs"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.youtube.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}