Centered Image Files for Chrome

Centers the image on the page when a image file is viewed in Chrome.

Centered Image Files for Chrome란 무엇입니까?

Centered Image Files for Chrome은(는) JG에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Centers the image on the page when a image file is viewed in Chrome."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Centered Image Files for Chrome 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        When you open an image file in Chrome, the browser displays the image in the top-left corner of the screen by default. This extension simply makes the browser display the image in the center of the screen so that you do not have to redirect your focus to view it.

An example before/after is shown in the screenshots. Or to demonstrate the effect yourself, open the image at the below link with and without the extension enabled.

https://www.youtube.com/yt/brand/media/image/YouTube-logo-full_color.png

This extension works on files with urls that end with common image file extensions such as .png, .jpeg, .gif. It does not affect .html files.                    

확장 프로그램 기본 정보

이름 Centered Image Files for Chrome Centered Image Files for Chrome
ID fineoicodbjnolpojmadechmnegedgko
공식 URL https://chrome.google.com/webstore/detail/centered-image-files-for/fineoicodbjnolpojmadechmnegedgko
설명 Centers the image on the page when a image file is viewed in Chrome.
파일 크기 10.14 KB
설치 횟수 42
현재 버전 0.1.0
최근 업데이트 2015-05-25
출시 날짜 2015-05-25
평점 4.50/5 총 2 개의 평점
개발자 JG
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Centered Image Files for Chrome",
    "short_name": "Centered Images",
    "description": "Centers the image on the page when a image file is viewed in Chrome.",
    "version": "0.1.0",
    "icons": {
        "16": "res\/center_16.png",
        "32": "res\/center_32.png",
        "48": "res\/center_48.png",
        "128": "res\/center_128.png"
    },
    "permissions": [
        "activeTab"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*.png",
                "*:\/\/*\/*.jpeg",
                "*:\/\/*\/*.jpg",
                "*:\/\/*\/*.gif",
                "*:\/\/*\/*.tif",
                "*:\/\/*\/*.tiff",
                "*:\/\/*\/*.bmp"
            ],
            "css": [
                "center.css"
            ]
        }
    ],
    "manifest_version": 2
}