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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "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

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Fit To Screen by TheY2T एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
            ]
        }
    ]
}