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.

Co je Fit YT to Width?

Fit YT to Width je rozšíření Chrome vyvinuté Andrew Lansing, a jeho hlavní funkcí je „Fits a Youtube video to the width of its window when viewing in a narrow window, designed for using dual windows on a chromebook.“.

Snímky obrazovky rozšíření

screenshot
screenshot

Stáhnout soubor CRX rozšíření Fit YT to Width

Stáhněte si soubory rozšíření Fit YT to Width ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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                    

Základní Informace o Rozšíření

Název Fit YT to Width Fit YT to Width
ID ijigameikofpgbincaiclnjlifjfekpf
Oficiální URL https://chrome.google.com/webstore/detail/fit-yt-to-width/ijigameikofpgbincaiclnjlifjfekpf
Popis Fits a Youtube video to the width of its window when viewing in a narrow window, designed for using dual windows on a chromebook.
Velikost souboru 7.14 KB
Počet instalací 167
Aktuální Verze 1.2
Poslední Aktualizace 2017-07-18
Datum Vydání 2017-07-18
Hodnocení 5.00/5 Celkem 1 Hodnocení
Vývojář Andrew Lansing
Typ Platby free
Podporované Jazyky 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
}