Image Rotator for WhatsApp™ Web

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

O que é Image Rotator for WhatsApp™ Web?

Image Rotator for WhatsApp™ Web é uma extensão do Chrome desenvolvida por GalaxyBS, e sua principal característica é "An unofficial extension that uses the context menu to rotate images from WhatsApp™ Web.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Image Rotator for WhatsApp™ Web

Baixe arquivos de extensão Image Rotator for WhatsApp™ Web no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Image Rotator for WhatsApp™ Web Image Rotator for WhatsApp™ Web
ID bcgcckcljjhmgfdaoaokoaamjidpjgfh
URL Oficial https://chromewebstore.google.com/detail/image-rotator-for-whatsap/bcgcckcljjhmgfdaoaokoaamjidpjgfh
Descrição An unofficial extension that uses the context menu to rotate images from WhatsApp™ Web.
Tamanho do Arquivo 10.98 KB
Contagem de Instalações 1,001
Versão Atual 1.6
Última Atualização 2023-12-01
Data de Publicação 2022-04-27
Classificação 4.33/5 Total de 6 Avaliações
Desenvolvedor GalaxyBS
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/BatelBB/Rotate_Image_Extension
URL da Página de Política de Privacidade https://www.privacypolicies.com/live/6b53c58e-1f11-41f6-9c5f-57d73853180a
Idiomas Suportados 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"
    }
}