Full Width Image

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

Cos'è Full Width Image?

Full Width Image è un'estensione di Chrome sviluppata da benwigley, e la sua funzione principale è "Constrain a single image in your browser to be full width. Useful for implementing design mocks.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Full Width Image

Scarica i file di estensione Full Width Image in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Full Width Image Full Width Image
ID cgmaeamcgkeplffocalahmnlembaicfe
URL Ufficiale https://chromewebstore.google.com/detail/full-width-image/cgmaeamcgkeplffocalahmnlembaicfe
Descrizione Constrain a single image in your browser to be full width. Useful for implementing design mocks.
Dimensione del File 44.76 KB
Conteggio Installazioni 146
Versione Corrente 0.0.2
Ultimo Aggiornamento 2015-09-27
Data di Pubblicazione 2015-09-27
Valutazione 3.67/5 Totale 3 Valutazioni
Sviluppatore benwigley
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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"
        ]
    }
}