Image Rotator for WhatsApp™ Web

An unofficial extension that uses the context menu to rotate images from WhatsApp™ Web.

Image Rotator for WhatsApp™ Web क्या है?

Image Rotator for WhatsApp™ Web GalaxyBS द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "An unofficial extension that uses the context menu to rotate images from WhatsApp™ Web."।

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

screenshot
screenshot

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

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

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

                        Introducing our useful, unofficial Chrome extension designed specifically for WhatsApp™ Web. Say goodbye to the discomfort of viewing improperly oriented images that often crop up during your online conversations.

Once you've installed our extension, adjusting any image from WhatsApp™ Web becomes a breeze. Simply right-click the desired image and select 'Open image in new tab'. Then, another right click reveals the 'Rotate Image' option. With each click on this option, your image will rotate either clockwise or counterclockwise in 90-degree increments.

Enhancing the user experience even further, we've integrated keyboard shortcuts in our latest update. For a clockwise rotation, use 'ctrl+shift+right key'. Alternatively, for a counterclockwise adjustment, 'ctrl+shift+left key' is your go-to command.

Avoid straining your neck with stubborn, improperly angled pictures in WhatsApp™ Web. Let our extension handle the rotation, providing you with a comfortable viewing experience.

To learn more, or to contribute to this ongoing project, visit our GitHub repository: https://github.com/BatelBB/Rotate_Image_Extension

Download our extension today - the unofficial, yet extremely efficient solution for image rotation in WhatsApp™ Web. Say goodbye to neck strain and hello to convenience!

Note: WhatsApp™ is a trademark of WhatsApp Inc.                    

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

नाम Image Rotator for WhatsApp™ Web Image Rotator for WhatsApp™ Web
ID bcgcckcljjhmgfdaoaokoaamjidpjgfh
आधिकारिक URL https://chromewebstore.google.com/detail/image-rotator-for-whatsap/bcgcckcljjhmgfdaoaokoaamjidpjgfh
विवरण An unofficial extension that uses the context menu to rotate images from WhatsApp™ Web.
फ़ाइल का आकार 10.98 KB
स्थापना संख्या 1,001
वर्तमान संस्करण 1.6
अंतिम अपडेट 2023-12-01
प्रकाशन तिथि 2022-04-27
रेटिंग 4.33/5 कुल 6 रेटिंग्स
डेवलपर GalaxyBS
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/BatelBB/Rotate_Image_Extension
गोपनीयता नीति पृष्ठ URL https://www.privacypolicies.com/live/6b53c58e-1f11-41f6-9c5f-57d73853180a
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Image Rotator for WhatsApp\u2122 Web",
    "version": "1.6",
    "manifest_version": 3,
    "description": "An unofficial extension that uses the context menu to rotate images from WhatsApp\u2122 Web.",
    "background": {
        "service_worker": "src\/background.js"
    },
    "permissions": [
        "contextMenus",
        "activeTab"
    ],
    "commands": {
        "rotate_clockwise": {
            "suggested_key": {
                "default": "Ctrl+Shift+Right",
                "mac": "MacCtrl+Shift+Right"
            },
            "description": "Rotate Image Clockwise"
        },
        "rotate_counterclockwise": {
            "suggested_key": {
                "default": "Ctrl+Shift+Left",
                "mac": "MacCtrl+Shift+Left"
            },
            "description": "Rotate Image Counterclockwise"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/web.whatsapp.com\/*"
            ],
            "match_origin_as_fallback": true,
            "js": [
                "src\/contentScript.js"
            ]
        }
    ],
    "icons": {
        "16": "icons\/16icon.png",
        "32": "icons\/32icon.png",
        "48": "icons\/48icon.png",
        "128": "icons\/128icon.png"
    }
}