YouTube Inline Fullscreen

Make the most out of your screen space with a single click!

YouTube Inline Fullscreen란 무엇입니까?

YouTube Inline Fullscreen은(는) doubleyoustew에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Make the most out of your screen space with a single click!"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

YouTube Inline Fullscreen 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This extension offers a windowed fullscreen mode for YouTube. You can toggle it using the extension icon, the dedicated button inside the YouTube player or by using the shortcut by pressing "w".

You can now also scroll down to the comments and related videos. You can toggle the search bar by pressing "s" while you are in fullscreen mode.

Make YouTube videos responsive. No more wasted space around the content you enjoy.

*Note*: Reload YouTube after installing the extension to have the button appear in the player.                    

확장 프로그램 기본 정보

이름 YouTube Inline Fullscreen YouTube Inline Fullscreen
ID mfpkbigjnlcgngkdbmnchfnenfmibkig
공식 URL https://chromewebstore.google.com/detail/youtube-inline-fullscreen/mfpkbigjnlcgngkdbmnchfnenfmibkig
설명 Make the most out of your screen space with a single click!
파일 크기 21.52 KB
설치 횟수 2,219
현재 버전 1.2.7
최근 업데이트 2023-09-27
출시 날짜 2020-01-23
평점 4.17/5 총 36 개의 평점
개발자 doubleyoustew
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "YouTube Inline Fullscreen",
    "version": "1.2.7",
    "description": "Make the most out of your screen space with a single click!",
    "icons": {
        "16": "icons\/fullscreen-16.png",
        "48": "icons\/fullscreen-48.png",
        "128": "icons\/fullscreen-128.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "scripting"
    ],
    "host_permissions": [
        "*:\/\/youtube.com\/*",
        "*:\/\/www.youtube.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "css": [
                "ytif_style.css"
            ],
            "js": [
                "ytif_content_script.js"
            ]
        }
    ],
    "action": {
        "default_name": "Fullscreen!",
        "default_icon": "icons\/fullscreen-48.png"
    },
    "manifest_version": 3
}