Full Width Image

Constrain a single image in your browser to be full width. Useful for implementing design mocks.

O que é Full Width Image?

Full Width Image é uma extensão do Chrome desenvolvida por benwigley, e sua principal característica é "Constrain a single image in your browser to be full width. Useful for implementing design mocks.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Full Width Image

Baixe arquivos de extensão Full Width Image 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

                        Important: This will only affect actual images opened in Chrome, not images in a web page.

Step 1: Open the extensions page and check "Allow access to file URLs".
Step 2: Open an image from your computer in Chrome.
Step 3: Click the Full Width Image extension.

Done, your image is now the full width of the browser window.                    

Informações Básicas da Extensão

Nome Full Width Image Full Width Image
ID cgmaeamcgkeplffocalahmnlembaicfe
URL Oficial https://chromewebstore.google.com/detail/full-width-image/cgmaeamcgkeplffocalahmnlembaicfe
Descrição Constrain a single image in your browser to be full width. Useful for implementing design mocks.
Tamanho do Arquivo 44.76 KB
Contagem de Instalações 146
Versão Atual 0.0.2
Última Atualização 2015-09-27
Data de Publicação 2015-09-27
Classificação 3.67/5 Total de 3 Avaliações
Desenvolvedor benwigley
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Full Width Image",
    "version": "0.0.2",
    "manifest_version": 2,
    "description": "Constrain a single image in your browser to be full width. Useful for implementing design mocks.",
    "browser_action": {
        "default_icon": {
            "19": "icons\/19x19_gray.png",
            "38": "icons\/38x38_gray.png",
            "48": "icons\/48x48_gray.png",
            "128": "icons\/128x128_gray.png"
        },
        "default_title": "Full Width Image"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/jquery.min.js",
                "js\/content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    }
}