Enhanced Image Viewer

Better Chrome image viewing experience

Enhanced Image Viewer क्या है?

Enhanced Image Viewer Branimir Klarić द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Better Chrome image viewing experience"।

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

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

                        Features:
✓ Position images in center or top left corner
✓ Set custom background color
✓ Zoom, rotate, pan and scroll images with improved controls
✓ Flip images horizontally and vertically
✓ Pixelate images for viewing pixel art and lossless formats
✓ Hide scrollbars
✓ View images in same tab
✓ Works with local files and incognito mode

All controls:
• Left mouse button click - scale image to fit window or to actual size
• Left mouse button drag - pan image
• Alt + Left mouse button drag - default Chrome drag behavior

• Mousewheel - zoom image
• Ctrl + Mousewheel - scroll vertically
• Shift + Mousewheel - scroll horizontally
• Alt + Mousewheel - rotate image

• H key - flip image horizontally
• V key - flip image vertically

• Q key - rotate image 90 degrees counter-clockwise
• E key - rotate image 90 degrees clockwise

• P key - pixelate image

Feel free to leave any feedback you might have. It will be addressed as soon as possible.

Icon made by Freepik (www.freepik.com) from www.flaticon.com                    

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

नाम Enhanced Image Viewer Enhanced Image Viewer
ID gefiaaeadjbmhjndnhedfccdjjlgjhho
आधिकारिक URL https://chromewebstore.google.com/detail/enhanced-image-viewer/gefiaaeadjbmhjndnhedfccdjjlgjhho
विवरण Better Chrome image viewing experience
फ़ाइल का आकार 83.36 KB
स्थापना संख्या 53,544
वर्तमान संस्करण 4.5
अंतिम अपडेट 2024-03-04
प्रकाशन तिथि 2019-03-08
रेटिंग 4.17/5 कुल 216 रेटिंग्स
डेवलपर Branimir Klarić
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Enhanced Image Viewer",
    "description": "Better Chrome image viewing experience",
    "version": "4.5",
    "icons": {
        "16": "icons\/icon16.png",
        "24": "icons\/icon24.png",
        "32": "icons\/icon24.png",
        "64": "icons\/icon64.png",
        "128": "icons\/icon128.png"
    },
    "permissions": [
        "contextMenus",
        "storage",
        "webNavigation",
        "scripting"
    ],
    "host_permissions": [
        ""
    ],
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "run_at": "document_end",
            "js": [
                "content.js"
            ]
        }
    ],
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    }
}