FitWidth

Adds an additional zoom mode for the default image view.

Τι είναι το FitWidth;

Το FitWidth είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον shylux, και η κύρια λειτουργία του είναι "Adds an additional zoom mode for the default image view.".

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

screenshot

Λήψη αρχείου CRX της επέκτασης FitWidth

Λήψη αρχείων επέκτασης FitWidth σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        The Google Chrome image view has two different zoom modes. This extension adds a third one.

Fit height or width: Fits the image to the window size. 

Original size: Displays the image in the original size. Ignores the window size.

-New- Fit width: Fits the image to the window width. If the image is too  high a scollbar is used.

This new mode is perfect to view very thin and high images like Screencaps.

Source: https://github.com/shylux/FitWidth                    

Βασικές Πληροφορίες Επέκτασης

Όνομα FitWidth FitWidth
ID pggbiaffhagpmifmogkfibinbbgacled
Επίσημο URL https://chromewebstore.google.com/detail/fitwidth/pggbiaffhagpmifmogkfibinbbgacled
Περιγραφή Adds an additional zoom mode for the default image view.
Μέγεθος Αρχείου 37.4 KB
Αριθμός Εγκαταστάσεων 490
Τρέχουσα Έκδοση 1.1
Τελευταία Ενημέρωση 2021-04-21
Ημερομηνία Δημοσίευσης 2019-09-21
Αξιολόγηση 5.00/5 Συνολικά 6 Αξιολογήσεις
Προγραμματιστής shylux
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/shylux/FitWidth
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/shylux/FitWidth/issues
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "FitWidth",
    "version": "1.1",
    "description": "Adds an additional zoom mode for the default image view.",
    "icons": {
        "128": "zoomplus.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "ftp:\/\/*\/*",
                "file:\/\/\/*"
            ],
            "js": [
                "jquery-2.1.1.min.js",
                "maximg.js"
            ],
            "css": [
                "style.css"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ],
    "manifest_version": 2
}