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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
공식 URL 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"
        ]
    }
}