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 είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον JG, και η κύρια λειτουργία του είναι "Centers the image on the page when a image file is viewed in Chrome.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Centered Image Files for Chrome

Λήψη αρχείων επέκτασης 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
Ηλεκτρονικό ταχυδρομείο [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
}