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.

Was ist Fit YT to Width?

Fit YT to Width ist eine Chrome-Erweiterung, die von Andrew Lansing entwickelt wurde, und ihr Hauptmerkmal ist "Fits a Youtube video to the width of its window when viewing in a narrow window, designed for using dual windows on a chromebook.".

Erweiterungsscreenshots

screenshot
screenshot

Fit YT to Width-Erweiterungs-CRX-Datei herunterladen

Laden Sie Fit YT to Width-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name Fit YT to Width Fit YT to Width
ID ijigameikofpgbincaiclnjlifjfekpf
Offizielle URL https://chrome.google.com/webstore/detail/fit-yt-to-width/ijigameikofpgbincaiclnjlifjfekpf
Beschreibung Fits a Youtube video to the width of its window when viewing in a narrow window, designed for using dual windows on a chromebook.
Dateigröße 7.14 KB
Installationsanzahl 167
Aktuelle Version 1.2
Letztes Update 2017-07-18
Veröffentlichungsdatum 2017-07-18
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler Andrew Lansing
Zahlungsart free
Unterstützte Sprachen 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
}