Full Width Image

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

什麼是Full Width Image?

Full Width Image是由benwigley開發的Chrome擴展程式,該擴展的主要功能是“Constrain a single image in your browser to be full width. Useful for implementing design mocks.”。

擴展截圖

screenshot
screenshot

下載Full Width Image擴展crx文件

下載Full Width Image擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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.                    

擴展基本資訊

名稱 Full Width Image Full Width Image
ID cgmaeamcgkeplffocalahmnlembaicfe
官方網址 https://chromewebstore.google.com/detail/full-width-image/cgmaeamcgkeplffocalahmnlembaicfe
簡介 Constrain a single image in your browser to be full width. Useful for implementing design mocks.
檔案大小 44.76 KB
安裝次數 146
目前版本 0.0.2
更新時間 2015-09-27
上架時間 2015-09-27
評分 3.67/5 共 3 次評分
開發者 benwigley
電子郵箱 [email protected]
付費類型 free
支援的語言 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"
        ]
    }
}