Hide YouTube™ Fullscreen Controls

Hide the YouTube™ fullscreen controls with the press of a hotkey or when you move the cursor to the display border.

Hide YouTube™ Fullscreen Controls란 무엇입니까?

Hide YouTube™ Fullscreen Controls은(는) superananas2에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Hide the YouTube™ fullscreen controls with the press of a hotkey or when you move the cursor to the display border."입니다.

확장 프로그램 스크린샷

screenshot

Hide YouTube™ Fullscreen Controls 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Does YouTube™ leave the video controls visible for longer than you like? Do you want to have a hotkey that toggles the controls?

This add-on let's you:
- Hide the video controls when you move the cursor to any border
- Hide the video controls and only show them when you want.
- Toggle the controls when you press a hotkey
- Hide some video overlays
- Hide the play/pause animation

In the add-on settings you can configure the individual sides as well as the hotkey.

If you experience any issues, please let me know at https://github.com/nralbrecht/youtube-hide-controls/issues

Note: The add-on currently does not work with embedded YouTube™ players.

YouTube™ is a trademark of Google Inc.
Use of this trademark is subject to Google Permissions.                    

확장 프로그램 기본 정보

이름 Hide YouTube™ Fullscreen Controls Hide YouTube™ Fullscreen Controls
ID akkdefghgcakdgkmakeajmijjhlcofmk
공식 URL https://chromewebstore.google.com/detail/hide-youtube-fullscreen-c/akkdefghgcakdgkmakeajmijjhlcofmk
설명 Hide the YouTube™ fullscreen controls with the press of a hotkey or when you move the cursor to the display border.
파일 크기 20.4 KB
설치 횟수 3,000
현재 버전 3.1.4
최근 업데이트 2022-11-25
출시 날짜 2020-10-12
평점 4.94/5 총 31 개의 평점
개발자 superananas2
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/nralbrecht/youtube-hide-controls
도움말 페이지 URL https://github.com/nralbrecht/youtube-hide-controls/issues
지원되는 언어 de,en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "__MSG_extensionName__",
    "description": "__MSG_extensionDescription__",
    "homepage_url": "https:\/\/github.com\/nralbrecht\/youtube-hide-controls",
    "default_locale": "en",
    "icons": {
        "128": "icon_128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "content-script.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "player.js",
                "player.css",
                "icon.svg",
                "options\/options.html"
            ],
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ]
        }
    ],
    "options_ui": {
        "page": "options\/options.html"
    },
    "permissions": [
        "storage"
    ],
    "host_permissions": [
        "*:\/\/www.youtube.com\/*"
    ],
    "version": "3.1.4"
}