Full Width Image

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

Vad är Full Width Image?

Full Width Image är en Chrome-tillägg utvecklad av benwigley, och dess huvudfunktion är "Constrain a single image in your browser to be full width. Useful for implementing design mocks.".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner Full Width Image-förlängningens CRX-fil

Ladda ner Full Width Image-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Full Width Image Full Width Image
ID cgmaeamcgkeplffocalahmnlembaicfe
Officiell webbadress https://chromewebstore.google.com/detail/full-width-image/cgmaeamcgkeplffocalahmnlembaicfe
Beskrivning Constrain a single image in your browser to be full width. Useful for implementing design mocks.
Filstorlek 44.76 KB
Antal Installationer 146
Aktuell Version 0.0.2
Senast Uppdaterad 2015-09-27
Publiceringsdatum 2015-09-27
Betyg 3.67/5 Totalt 3 Betyg
Utvecklare benwigley
E-post [email protected]
Betalningssätt free
Stödda Språk 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"
        ]
    }
}