Maximize Flash

Make a flash video use as much screen size as the tab it's in and the aspect ratio allows, without causing the video to reload.

O que é Maximize Flash?

Maximize Flash é uma extensão do Chrome desenvolvida por Scott Glajch, e sua principal característica é "Make a flash video use as much screen size as the tab it's in and the aspect ratio allows, without causing the video to reload.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Maximize Flash

Baixe arquivos de extensão Maximize Flash 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

                        Log feature requests and issues at https://github.com/glajchs/maximize-flash-chrome/issues

Version 1.3
- Make a special case for youtube HTML5 videos to expand the player controls as well.  Youtube uses a separate div for HTML5 player controls and the actual video.

Version 1.2
- Fix a bug where the maximize/restore icon sometimes goes away after changing pages.
- Maximized videos after that stick around after page navigation (youtube) can now be restored by clicking on the maximize/restore icon.

Version 1.1.1
- Reduce footprint by using minified jquery.
- Update to the latest jquery.important plugin.

Version 1.1
- Add support for HTML5 

Informações Básicas da Extensão

Nome Maximize Flash Maximize Flash
ID chihjmmmhbapnhemoopibkekbojilhge
URL Oficial https://chromewebstore.google.com/detail/maximize-flash/chihjmmmhbapnhemoopibkekbojilhge
Descrição Make a flash video use as much screen size as the tab it's in and the aspect ratio allows, without causing the video to reload.
Tamanho do Arquivo 71.66 KB
Contagem de Instalações 4,891
Versão Atual 1.3
Última Atualização 2014-04-24
Data de Publicação 2014-04-24
Classificação 4.12/5 Total de 112 Avaliações
Desenvolvedor Scott Glajch
Tipo de Pagamento free
Site da Extensão https://github.com/glajchs/maximize-flash-chrome
URL da Página de Ajuda https://github.com/glajchs/maximize-flash-chrome/issues
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Maximize Flash",
    "version": "1.3",
    "description": "Make a flash video use as much screen size as the tab it's in and the aspect ratio allows, without causing the video to reload.",
    "author": "Scott Glajch",
    "background": {
        "scripts": [
            "lodash.min.js",
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "jquery-1.11.0.min.js",
                "jquery.important.js",
                "lodash.min.js",
                "maximize_flash.js"
            ],
            "all_frames": true
        }
    ],
    "content_security_policy": "script-src 'self'; object-src 'self'",
    "page_action": {
        "default_icon": "maximizeFlash.png",
        "default_title": "Maximize Flash"
    },
    "permissions": [
        "tabs"
    ]
}