Better YouTube Shorts

Take back the controls on YouTube Shorts with playback, volume, timestamp controls and more.

Better YouTube Shorts란 무엇입니까?

Better YouTube Shorts은(는) Young Shung에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Take back the controls on YouTube Shorts with playback, volume, timestamp controls and more."입니다.

확장 프로그램 스크린샷

screenshot

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

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

확장 프로그램 사용 설명서

                        Control your YouTube shorts just like a normal YouTube video! Features include progress bar, seeking, playback speed, auto skip and more. You can also customize the keybinds to your liking!

List of Features:
- Progress bar at the bottom with time and duration
- Seeking 5 seconds backward and forward with arrow keys
- Auto skip short when current one ends
- Auto skip short with likes below custom threshold (e.g. 500 likes)
- Auto open comment section on each short
- Decrease and increase playback speed with keys U and O
- Revert to normal speed with I or by clicking the speed button
- Control volume with the volume slider or with - and =, mute audio with M
- Mini timestamp and speed above the like button (can be scrolled on!)
- Navigate to previous or next short without animation with W and S
- Go to the next frame or previous frame with . and , while paused
- Customizable keybinds

Fully open-source with MIT License: https://github.com/ynshung/better-yt-shorts                    

확장 프로그램 기본 정보

이름 Better YouTube Shorts Better YouTube Shorts
ID icnidlkdlledahfgejnagmhgaeijokcp
공식 URL https://chrome.google.com/webstore/detail/better-youtube-shorts/icnidlkdlledahfgejnagmhgaeijokcp
설명 Take back the controls on YouTube Shorts with playback, volume, timestamp controls and more.
파일 크기 27.83 KB
설치 횟수 16,533
현재 버전 2.7.2
최근 업데이트 2023-08-06
출시 날짜 2022-06-06
평점 4.59/5 총 99 개의 평점
개발자 Young Shung
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/ynshung/better-yt-shorts
도움말 페이지 URL https://github.com/ynshung/better-yt-shorts/issues
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Better YouTube Shorts",
    "description": "Take back the controls on YouTube Shorts with playback, volume, timestamp controls and more.",
    "version": "2.7.2",
    "manifest_version": 3,
    "permissions": [
        "storage"
    ],
    "action": {
        "default_popup": "popup.html"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.youtube.com\/*"
            ],
            "js": [
                "content-script.js"
            ],
            "css": [
                "styles.css"
            ]
        }
    ],
    "icons": {
        "16": "icons\/byts16.png",
        "32": "icons\/byts32.png",
        "48": "icons\/byts48.png",
        "128": "icons\/byts128.png"
    }
}