WhatsApp Web Image Rotator

WhatsApp Web Image Rotator

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

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "WhatsApp Web Image Rotator",
  "version": "1.0",
  "manifest_version": 2,
  "description": "An extension that uses the context menu to rotate images from Whatsapp Web.",
  "background": {
    "scripts": [
      "src/background.js"
    ]
  },
  "permissions": [
    "contextMenus",
    "activeTab"
  ],
  "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"
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "{73dbe0d3-b6fe-4b77-a5e2-b0ae7b47d4c3}"
    }
  }
}