Controls for YouTube™ Shorts

Add controls for videos of YouTube™ shorts, including shortcuts!

Controls for YouTube™ Shorts란 무엇입니까?

Controls for YouTube™ Shorts은(는) edoan에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Add controls for videos of YouTube™ shorts, including shortcuts!"입니다.

확장 프로그램 스크린샷

screenshot

Controls for YouTube™ Shorts 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Add a control bar below videos from YouTube Shorts.

Options:
- Always visible controls: it's not necessary to hover over the video for the controls to appear.
- Hide title and channel: when not hovering over the video, this option will hide the video information that overlays the video.
- Control volume with Arrow Up/Down: allow you to control the volume with arrow keys without holding shift/cmd, it is optional, as many users use it to scroll between shorts.

Keyboard shortcuts:
- Left/Right arrow keys to backward/forward the video by 5 seconds.
- Shift/Cmd + Up/Down arrow keys to increase/decrease the volume.
- "M" to mute/unmute the video.
- Spacebar to pause/resume the video.                    

확장 프로그램 기본 정보

이름 Controls for YouTube™ Shorts Controls for YouTube™ Shorts
ID daocpklojfnjgomjaemhhibodkpcjlpe
공식 URL https://chromewebstore.google.com/detail/controls-for-youtube-shor/daocpklojfnjgomjaemhhibodkpcjlpe
설명 Add controls for videos of YouTube™ shorts, including shortcuts!
파일 크기 264 KB
설치 횟수 4,011
현재 버전 1.3.45
최근 업데이트 2024-01-28
출시 날짜 2023-06-22
평점 4.79/5 총 34 개의 평점
개발자 edoan
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/Zennos/controls-for-yt-shorts
지원되는 언어 en,pt-BR
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_AppName__",
    "version": "1.3.45",
    "manifest_version": 3,
    "description": "__MSG_AppDescription__",
    "permissions": [
        "storage",
        "scripting"
    ],
    "host_permissions": [
        "*:\/\/*.youtube.com\/*"
    ],
    "default_locale": "en",
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "css": [
                "css\/content_script.css"
            ],
            "js": [
                "libs\/mutation_summary.js",
                "libs\/fluidplayer.min.js",
                "js\/observer.js",
                "js\/utils.js",
                "js\/content_script.js"
            ]
        }
    ],
    "action": {
        "default_popup": "html\/popup.html",
        "default_icon": {
            "16": "images\/icons\/normal\/icon-16.png",
            "48": "images\/icons\/normal\/icon-48.png",
            "32": "images\/icons\/normal\/icon-128.png"
        }
    },
    "icons": {
        "16": "images\/icons\/normal\/icon-16.png",
        "48": "images\/icons\/normal\/icon-48.png",
        "128": "images\/icons\/normal\/icon-128.png"
    }
}