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.

Hvad er Fit YT to Width?

Fit YT to Width er en Chrome-udvidelse udviklet af Andrew Lansing, og dens hovedfunktion er "Fits a Youtube video to the width of its window when viewing in a narrow window, designed for using dual windows on a chromebook.".

Udvidelsesskærmbilleder

screenshot
screenshot

Download Fit YT to Width-udvidelses-CRX-fil

Download Fit YT to Width-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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                    

Grundlæggende oplysninger om udvidelsen

Navn Fit YT to Width Fit YT to Width
ID ijigameikofpgbincaiclnjlifjfekpf
Officiel URL https://chrome.google.com/webstore/detail/fit-yt-to-width/ijigameikofpgbincaiclnjlifjfekpf
Beskrivelse Fits a Youtube video to the width of its window when viewing in a narrow window, designed for using dual windows on a chromebook.
Filstørrelse 7.14 KB
Antal Installationer 167
Nuværende Version 1.2
Senest Opdateret 2017-07-18
Udgivelsesdato 2017-07-18
Bedømmelse 5.00/5 Samlet 1 Bedømmelser
Udvikler Andrew Lansing
Betalingsmetode free
Understøttede Sprog 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
}