Fit YT to Width

Fits a Youtube video to the width of its window when viewing in a narrow window, designed for using dual windows on a chromebook.

Fit YT to Width란 무엇입니까?

Fit YT to Width은(는) Andrew Lansing에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Fits a Youtube video to the width of its window when viewing in a narrow window, designed for using dual windows on a chromebook."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Fit YT to Width 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Tip: Chromebook users can make use of the alt + [ and alt + ] shortcuts to resize windows to fit half of your screen as seen in the screenshot                    

확장 프로그램 기본 정보

이름 Fit YT to Width Fit YT to Width
ID ijigameikofpgbincaiclnjlifjfekpf
공식 URL https://chrome.google.com/webstore/detail/fit-yt-to-width/ijigameikofpgbincaiclnjlifjfekpf
설명 Fits a Youtube video to the width of its window when viewing in a narrow window, designed for using dual windows on a chromebook.
파일 크기 7.14 KB
설치 횟수 167
현재 버전 1.2
최근 업데이트 2017-07-18
출시 날짜 2017-07-18
평점 5.00/5 총 1 개의 평점
개발자 Andrew Lansing
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Fit YT to Width",
    "version": "1.2",
    "description": "Fits a Youtube video to the width of its window when viewing in a narrow window, designed for using dual windows on a chromebook.",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "page_action": {
        "default_icon": "icon.png",
        "default_title": "Fit YT to Witdh"
    },
    "content_scripts": [
        {
            "css": [
                "styles.css"
            ],
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ]
        }
    ],
    "permissions": [
        "declarativeContent",
        "https:\/\/www.youtube.com\/*",
        "tabs"
    ],
    "manifest_version": 2
}