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.

O que é Fit YT to Width?

Fit YT to Width é uma extensão do Chrome desenvolvida por Andrew Lansing, e sua principal característica é "Fits a Youtube video to the width of its window when viewing in a narrow window, designed for using dual windows on a chromebook.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Fit YT to Width

Baixe arquivos de extensão Fit YT to Width no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome Fit YT to Width Fit YT to Width
ID ijigameikofpgbincaiclnjlifjfekpf
URL Oficial https://chrome.google.com/webstore/detail/fit-yt-to-width/ijigameikofpgbincaiclnjlifjfekpf
Descrição Fits a Youtube video to the width of its window when viewing in a narrow window, designed for using dual windows on a chromebook.
Tamanho do Arquivo 7.14 KB
Contagem de Instalações 167
Versão Atual 1.2
Última Atualização 2017-07-18
Data de Publicação 2017-07-18
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor Andrew Lansing
Tipo de Pagamento free
Idiomas Suportados 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
}