FitWidth

Adds an additional zoom mode for the default image view.

FitWidth क्या है?

FitWidth shylux द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Adds an additional zoom mode for the default image view."।

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

screenshot

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

crx प्रारूप में FitWidth एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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
}