Better Shorts Player

Adds video player controls to YouTube Shorts

Better Shorts Player란 무엇입니까?

Better Shorts Player은(는) Joubert Van Zyl에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Adds video player controls to YouTube Shorts"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Better Shorts Player 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Better Shorts Player adds the ability to scrub through a shorts video, play, pause, adjust volume and mute the video.

The controls fade away when not being hovered on as to not be intrusive to the video.                    

확장 프로그램 기본 정보

이름 Better Shorts Player Better Shorts Player
ID bagcbccbbigjaicnmlcllplhjdfjeimn
공식 URL https://chromewebstore.google.com/detail/better-shorts-player/bagcbccbbigjaicnmlcllplhjdfjeimn
설명 Adds video player controls to YouTube Shorts
파일 크기 18.21 KB
설치 횟수 802
현재 버전 1.0.0
최근 업데이트 2023-03-06
출시 날짜 2023-03-06
평점 4.77/5 총 13 개의 평점
개발자 Joubert Van Zyl
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Better Shorts Player",
    "description": "Adds video player controls to YouTube Shorts",
    "manifest_version": 3,
    "version": "1.0.0",
    "background": {
        "service_worker": "background.js"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "assets\/pause.png",
                "assets\/play.png",
                "assets\/muted.png",
                "assets\/unmuted.png"
            ],
            "matches": [
                "*:\/\/www.youtube.com\/*"
            ]
        }
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.youtube.com\/*"
            ],
            "js": [
                "script.js"
            ],
            "css": [
                "styles.css"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "tabs"
    ],
    "icons": {
        "16": "assets\/icon.png",
        "48": "assets\/icon.png",
        "128": "assets\/icon.png"
    }
}