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 to jest Fit YT to Width?

Fit YT to Width to rozszerzenie Chrome opracowane przez Andrew Lansing, a jego główną funkcją jest „Fits a Youtube video to the width of its window when viewing in a narrow window, designed for using dual windows on a chromebook.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Fit YT to Width

Pobierz pliki rozszerzeń Fit YT to Width w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa Fit YT to Width Fit YT to Width
ID ijigameikofpgbincaiclnjlifjfekpf
Oficjalny URL https://chrome.google.com/webstore/detail/fit-yt-to-width/ijigameikofpgbincaiclnjlifjfekpf
Opis Fits a Youtube video to the width of its window when viewing in a narrow window, designed for using dual windows on a chromebook.
Rozmiar pliku 7.14 KB
Liczba instalacji 167
Aktualna Wersja 1.2
Ostatnia Aktualizacja 2017-07-18
Data Publikacji 2017-07-18
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper Andrew Lansing
Typ Płatności free
Obsługiwane Języki 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
}