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 là gì?

Fit To Screen by TheY2T là một tiện ích mở rộng Chrome được phát triển bởi y2trooper, và tính năng chính của nó là "This extension allows you to fit to screen YouTube and Twitch video feeds regardless of aspect ratio when in fullscreen mode.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Fit To Screen by TheY2T

Tải xuống các tệp mở rộng Fit To Screen by TheY2T dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Fit To Screen by TheY2T Fit To Screen by TheY2T
ID bikbmgikikoblfpoledibfbicaoofkkm
URL Chính Thức https://chromewebstore.google.com/detail/fit-to-screen-by-they2t/bikbmgikikoblfpoledibfbicaoofkkm
Mô tả This extension allows you to fit to screen YouTube and Twitch video feeds regardless of aspect ratio when in fullscreen mode.
Kích Thước Tệp 40.84 KB
Số Lần Cài Đặt 503
Phiên Bản Hiện Tại 2.0.0.0
Cập Nhật Lần Cuối 2017-10-25
Ngày Phát Hành 2017-10-25
Đánh Giá 4.60/5 Tổng số 10 Đánh Giá
Nhà Phát Triển y2trooper
Loại Thanh Toán free
Trang Web Mở Rộng http://www.twitter.com/HewettMichael
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}