YouTube™ Tracklist Control

Provides useful, cross-tab control functionalities when watching music-compilation videos on YouTube™.

YouTube™ Tracklist Control란 무엇입니까?

YouTube™ Tracklist Control은(는) Xavier Duthil에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Provides useful, cross-tab control functionalities when watching music-compilation videos on YouTube™."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

YouTube™ Tracklist Control 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This extension builds its own interactive tracklist by scanning for timestamped tracks in the video description or comments.

The tracklist can be displayed from any tab and controlled via configurable global keyboard shortcuts (defaults are the keyboard's media buttons).

Features:
- Media control (play, pause, rewind, fast-forward, previous track, next track)
- Tracklist building from the video description or comments
- Tracklist navigation
- Clickable progress bar on current song
- Support of keyboard media keys (configurable global keyboard shortcuts)
- Cross-tab interactivity (view and control the tracklist from any tab)
- Push notifications on track/video change (toggleable setting)

Changelog: https://github.com/XavierDuthil/youtube-tracklist-control/blob/master/CHANGELOG.md

Source: https://github.com/XavierDuthil/youtube-tracklist-control                    

확장 프로그램 기본 정보

이름 YouTube™ Tracklist Control YouTube™ Tracklist Control
ID acdincmjdbdcndnidcmajippglnbplhk
공식 URL https://chrome.google.com/webstore/detail/acdincmjdbdcndnidcmajippglnbplhk
설명 Provides useful, cross-tab control functionalities when watching music-compilation videos on YouTube™.
파일 크기 664 KB
설치 횟수 554
현재 버전 2.7.1
최근 업데이트 2023-09-15
출시 날짜 2019-06-14
평점 4.75/5 총 8 개의 평점
개발자 Xavier Duthil
이메일 [email protected]
결제 유형 free
도움말 페이지 URL https://github.com/XavierDuthil/youtube-tracklist-control
지원되는 언어 de,en,en-GB,en-US,fr,es,it
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "version": "2.7.1",
    "name": "__MSG_appName__",
    "description": "__MSG_appDesc__",
    "default_locale": "en",
    "browser_action": {
        "default_icon": {
            "19": "img\/icon19.png",
            "38": "img\/icon38.png"
        },
        "default_popup": "popup.html",
        "default_title": "YouTube\u2122 Tracklist Control"
    },
    "icons": {
        "16": "img\/icon16.png",
        "48": "img\/icon48.png",
        "128": "img\/icon128.png"
    },
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "permissions": [
        "activeTab",
        "notifications",
        "storage",
        "tabs",
        "background",
        "*:\/\/*.youtube.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/watch?v=*"
            ],
            "js": [
                "js\/contentScript.js"
            ]
        }
    ],
    "commands": {
        "cmd_previous_track": {
            "suggested_key": {
                "default": "MediaPrevTrack"
            },
            "description": "Previous track",
            "global": true
        },
        "cmd_rewind": {
            "description": "Rewind 5 seconds",
            "global": true
        },
        "cmd_play_pause": {
            "suggested_key": {
                "default": "MediaPlayPause"
            },
            "description": "Play\/pause",
            "global": true
        },
        "cmd_fast_forward": {
            "description": "Fast forward 5 seconds",
            "global": true
        },
        "cmd_next_track": {
            "suggested_key": {
                "default": "MediaNextTrack"
            },
            "description": "Next track",
            "global": true
        }
    }
}