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文件

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

擴展使用說明

                        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
官方網址 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
}