YouTabMan

A Web Extension used to control all of your YouTube tabs.

YouTabMan란 무엇입니까?

YouTabMan은(는) Theenadayalan에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A Web Extension used to control all of your YouTube tabs."입니다.

확장 프로그램 스크린샷

screenshot

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

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

확장 프로그램 사용 설명서

                        YouTabMan is a Web Extension to control all of your currently running Youtube videos at one place. 

v1.3.2
- Pause button label name change fix

v1.3.0
- Migrated to VueJs framework
- Added loop button
- Hover next button view the next song

v1.2.0 - 1.2.3
- Search Event Fix
- Internal Fix
- Icon Update
- UI Fix

v1.1.0

- Replay Button Added

v1.0.0

- You will be having Play/Pause/Replay, Next, Mute Control inside YouTabMan.
- You can also able to close the tab if you want to.
- Searching is also possible in YouTabMan                    

확장 프로그램 기본 정보

이름 YouTabMan YouTabMan
ID pfflnpdlbjjkgnelipgknanbnjafijgi
공식 URL https://chromewebstore.google.com/detail/youtabman/pfflnpdlbjjkgnelipgknanbnjafijgi
설명 A Web Extension used to control all of your YouTube tabs.
파일 크기 45.28 KB
설치 횟수 33
현재 버전 1.3.2
최근 업데이트 2019-04-02
출시 날짜 2019-04-02
평점 5.00/5 총 4 개의 평점
개발자 Theenadayalan
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://www.theenadayalan.me
도움말 페이지 URL https://github.com/theenadayalank/youtabman
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "YouTabMan",
    "version": "1.3.2",
    "description": "A Web Extension used to control all of your YouTube tabs.",
    "browser_action": {
        "default_title": "YouTabMan",
        "default_popup": "index.html",
        "default_icon": "logo.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "background.js"
            ]
        }
    ],
    "icons": {
        "128": "logo.png"
    },
    "permissions": [
        "activeTab",
        "tabs",
        "http:\/\/*\/",
        "https:\/\/*\/"
    ]
}