Full Width Image

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

Qu'est-ce que Full Width Image ?

Full Width Image est une extension Chrome développée par benwigley, et sa fonction principale est "Constrain a single image in your browser to be full width. Useful for implementing design mocks.".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Full Width Image

Téléchargez les fichiers d'extension Full Width Image au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Full Width Image Full Width Image
ID cgmaeamcgkeplffocalahmnlembaicfe
URL Officiel https://chromewebstore.google.com/detail/full-width-image/cgmaeamcgkeplffocalahmnlembaicfe
Description Constrain a single image in your browser to be full width. Useful for implementing design mocks.
Taille du Fichier 44.76 KB
Nombre d'Installations 146
Version Actuelle 0.0.2
Dernière Mise à Jour 2015-09-27
Date de Publication 2015-09-27
Évaluation 3.67/5 Total 3 Évaluations
Développeur benwigley
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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"
        ]
    }
}