Image Rotator for WhatsApp™ Web

Image Rotator for WhatsApp™ Web

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

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Image Rotator for WhatsApp™ Web",
  "version": "1.6",
  "manifest_version": 3,
  "description": "An unofficial extension that uses the context menu to rotate images from WhatsApp™ 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"
  }
}