FitWidth

Adds an additional zoom mode for the default image view.

Qu'est-ce que FitWidth ?

FitWidth est une extension Chrome développée par shylux, et sa fonction principale est "Adds an additional zoom mode for the default image view.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension FitWidth

Téléchargez les fichiers d'extension FitWidth au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom FitWidth FitWidth
ID pggbiaffhagpmifmogkfibinbbgacled
URL Officiel https://chromewebstore.google.com/detail/fitwidth/pggbiaffhagpmifmogkfibinbbgacled
Description Adds an additional zoom mode for the default image view.
Taille du Fichier 37.4 KB
Nombre d'Installations 490
Version Actuelle 1.1
Dernière Mise à Jour 2021-04-21
Date de Publication 2019-09-21
Évaluation 5.00/5 Total 6 Évaluations
Développeur shylux
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/shylux/FitWidth
URL de la Page d'Aide https://github.com/shylux/FitWidth/issues
Langues Prises en Charge 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
}