Full Width Image

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

¿Qué es Full Width Image?

Full Width Image es una extensión de Chrome desarrollada por benwigley, y su función principal es "Constrain a single image in your browser to be full width. Useful for implementing design mocks.".

Capturas de Pantalla de la Extensión

screenshot
screenshot

Descargar Archivo CRX de la Extensión Full Width Image

Descarga archivos de extensión Full Width Image en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre Full Width Image Full Width Image
ID cgmaeamcgkeplffocalahmnlembaicfe
URL Oficial https://chromewebstore.google.com/detail/full-width-image/cgmaeamcgkeplffocalahmnlembaicfe
Descripción Constrain a single image in your browser to be full width. Useful for implementing design mocks.
Tamaño del Archivo 44.76 KB
Cantidad de Instalaciones 146
Versión Actual 0.0.2
Última Actualización 2015-09-27
Fecha de Publicación 2015-09-27
Calificación 3.67/5 Total de 3 Calificaciones
Desarrollador benwigley
Correo electrónico [email protected]
Tipo de Pago free
Idiomas Soportados 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"
        ]
    }
}