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.

What is Fit YT to Width?

Fit YT to Width is a Chrome extension developed by Andrew Lansing, and its main feature is "Fits a Youtube video to the width of its window when viewing in a narrow window, designed for using dual windows on a chromebook.".

Extension Screenshots

screenshot
screenshot

Download Fit YT to Width Extension CRX File

Download Fit YT to Width extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name Fit YT to Width Fit YT to Width
ID ijigameikofpgbincaiclnjlifjfekpf
Official URL https://chrome.google.com/webstore/detail/fit-yt-to-width/ijigameikofpgbincaiclnjlifjfekpf
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.
File Size 7.14 KB
Installation Count 167
Current Version 1.2
Last Updated 2017-07-18
Publish Date 2017-07-18
Rating 5.00/5 Total 1 Ratings
Developer Andrew Lansing
Payment Type free
Supported Languages 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
}