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
公式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
Eメール [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
}