Fit To Screen by TheY2T

This extension allows you to fit to screen YouTube and Twitch video feeds regardless of aspect ratio when in fullscreen mode.

Fit To Screen by TheY2T란 무엇입니까?

Fit To Screen by TheY2T은(는) y2trooper에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension allows you to fit to screen YouTube and Twitch video feeds regardless of aspect ratio when in fullscreen mode."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

Fit To Screen by TheY2T 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This extension allows you to fit to screen YouTube and Twitch video feeds regardless of aspect ratio when in fullscreen mode.

This is especially handy for people with older LCD / Plasma screens that do not support 16:9 or 16:10 ratio and you're always getting letterboxed screens as a result.

Use this tool to avoid losing 30 - 40% of your already smaller screen!

This is only for YouTube and Twitch video platforms.
I can add more platforms upon request and if its easy to do.                    

확장 프로그램 기본 정보

이름 Fit To Screen by TheY2T Fit To Screen by TheY2T
ID bikbmgikikoblfpoledibfbicaoofkkm
공식 URL https://chromewebstore.google.com/detail/fit-to-screen-by-they2t/bikbmgikikoblfpoledibfbicaoofkkm
설명 This extension allows you to fit to screen YouTube and Twitch video feeds regardless of aspect ratio when in fullscreen mode.
파일 크기 40.84 KB
설치 횟수 503
현재 버전 2.0.0.0
최근 업데이트 2017-10-25
출시 날짜 2017-10-25
평점 4.60/5 총 10 개의 평점
개발자 y2trooper
결제 유형 free
확장 프로그램 웹 사이트 http://www.twitter.com/HewettMichael
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Fit To Screen by TheY2T",
    "short_name": "FitToScreen",
    "description": "This extension allows you to fit to screen YouTube and Twitch video feeds regardless of aspect ratio when in fullscreen mode.",
    "version": "2.0.0.0",
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "fitToScreen.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "tabs",
        "storage",
        "https:\/\/ajax.googleapis.com\/",
        "https:\/\/www.youtube.com\/*",
        "https:\/\/www.twitch.tv\/*",
        "https:\/\/go.twitch.tv\/*",
        "https:\/\/ww2.animeram.cc\/*",
        "https:\/\/www.animebam.net\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/go.twitch.tv\/*",
                "https:\/\/www.twitch.tv\/*",
                "https:\/\/www.youtube.com\/*",
                "https:\/\/ww2.animeram.cc\/*",
                "https:\/\/www.animebam.net\/*"
            ],
            "js": [
                "jquery.js",
                "fitToScreen.js",
                "setNormal.js",
                "setFitToScreen.js"
            ]
        }
    ]
}