twitter-image-helper

This addon provides an additional context menu on Twitter's default webpage. This menu allows easier opening of images, even in the gallery view where such images are harder to access. Furthermore, it ensures the original quality image url is opened.
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "manifest_version": 2,
  "name": "twitter-image-helper",
  "description": "This addon provides an additional context menu on Twitter's default webpage. This menu allows easier opening of images, even in the gallery view where such images are harder to access. Furthermore, it ensures the original quality image url is opened.",
  "version": "0.9.1",
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "permissions": [
    "contextMenus",
    "activeTab",
    "downloads"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*.twitter.com/*",
        "*://*.x.com/*"
      ],
      "all_frames": true,
      "js": [
        "content_scripts/menu_info.js"
      ]
    }
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{322486ce-2b15-4a5f-890f-d6db381dc938}"
    }
  }
}