Full Width Image

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

Was ist Full Width Image?

Full Width Image ist eine Chrome-Erweiterung, die von benwigley entwickelt wurde, und ihr Hauptmerkmal ist "Constrain a single image in your browser to be full width. Useful for implementing design mocks.".

Erweiterungsscreenshots

screenshot
screenshot

Full Width Image-Erweiterungs-CRX-Datei herunterladen

Laden Sie Full Width Image-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Full Width Image Full Width Image
ID cgmaeamcgkeplffocalahmnlembaicfe
Offizielle URL https://chromewebstore.google.com/detail/full-width-image/cgmaeamcgkeplffocalahmnlembaicfe
Beschreibung Constrain a single image in your browser to be full width. Useful for implementing design mocks.
Dateigröße 44.76 KB
Installationsanzahl 146
Aktuelle Version 0.0.2
Letztes Update 2015-09-27
Veröffentlichungsdatum 2015-09-27
Bewertung 3.67/5 Insgesamt 3 Bewertungen
Entwickler benwigley
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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"
        ]
    }
}