Enhanced Image Viewer

Enhances the browser's default image viewer

Enhanced Image Viewer क्या है?

Enhanced Image Viewer Sebastian Blask द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Enhances the browser's default image viewer"।

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

screenshot

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

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

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

                        Enhanced Image Viewer
=====================

Enhances the browser's default image viewer with:

 - more scaling modes (configurable in the preferences - click toolbar button)
   to cycle through when left-clicking
 - easy rotation (in 90° steps) using `l` and `r` for left and right rotation
   respectively
 - scaling mode and rotation can be remembered so they are applied when opening
   other images
 - configurable background color
 - image information and information about scaling mode and rotation are
   briefly shown when opening an image and can be toggled by pressing `i`

Default browser zoom (ctrl-scroll/ctrl-plus/ctrl-minus) can still be used, but
probably only works as expected in natural size scaling mode. If the chosen
scaling mode is fitting the image to width or height, zooming does not change
the image size.

Feedback
--------

You can report bugs or make feature requests on
https://github.com/sblask/webextension-enhanced-image-viewer

Patches are welcome.                    

एक्सटेंशन की मूल जानकारी

नाम Enhanced Image Viewer Enhanced Image Viewer
ID hinoflbjclgnnaccbpbenmjomjmiafmc
आधिकारिक URL https://chromewebstore.google.com/detail/enhanced-image-viewer/hinoflbjclgnnaccbpbenmjomjmiafmc
विवरण Enhances the browser's default image viewer
फ़ाइल का आकार 106 KB
स्थापना संख्या 1,911
वर्तमान संस्करण 1.1.1
अंतिम अपडेट 2020-03-03
प्रकाशन तिथि 2020-03-03
रेटिंग 4.21/5 कुल 14 रेटिंग्स
डेवलपर Sebastian Blask
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/sblask/webextension-enhanced-image-viewer
सहायता पृष्ठ URL https://github.com/sblask/webextension-enhanced-image-viewer
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "author": "Sebastian Blask",
    "background": {
        "scripts": [
            "browser-polyfill.js",
            "background.js"
        ]
    },
    "browser_action": {
        "browser_style": false,
        "default_popup": "options\/options.html",
        "default_title": "__MSG_browserActionLabelDefault__"
    },
    "description": "__MSG_extensionDescription__",
    "homepage_url": "https:\/\/github.com\/sblask\/webextension-enhanced-image-viewer",
    "icons": {
        "128": "icon-128x128.png",
        "16": "icon-16x16.png",
        "32": "icon-32x32.png",
        "48": "icon-48x48.png",
        "64": "icon-64x64.png"
    },
    "manifest_version": 2,
    "name": "__MSG_extensionName__",
    "options_ui": {
        "page": "options\/options.html"
    },
    "permissions": [
        "",
        "storage",
        "webNavigation",
        "webRequest"
    ],
    "default_locale": "en",
    "version": "1.1.1"
}