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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Centers the image on the page when a image file is viewed in Chrome."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Centered Image Files for Chrome एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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
}