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.

Qu'est-ce que Fit YT to Width ?

Fit YT to Width est une extension Chrome développée par Andrew Lansing, et sa fonction principale est "Fits a Youtube video to the width of its window when viewing in a narrow window, designed for using dual windows on a chromebook.".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Fit YT to Width

Téléchargez les fichiers d'extension Fit YT to Width au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom Fit YT to Width Fit YT to Width
ID ijigameikofpgbincaiclnjlifjfekpf
URL Officiel 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.
Taille du Fichier 7.14 KB
Nombre d'Installations 167
Version Actuelle 1.2
Dernière Mise à Jour 2017-07-18
Date de Publication 2017-07-18
Évaluation 5.00/5 Total 1 Évaluations
Développeur Andrew Lansing
Type de Paiement free
Langues Prises en Charge 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
}