Tab Image Saver

Tab Image Saver

Save images from open tabs. Default action saves largest image in active tab, with options to act on tabs to the left or right of the active tab.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "__MSG_extension_name__",
  "default_locale": "en",
  "applications": {
    "gecko": {
      "strict_min_version": "73.0",
      "id": "[email protected]"
    }
  },
  "permissions": [
    "cookies",
    "downloads",
    "menus",
    "notifications",
    "storage",
    "tabs",
    "<all_urls>"
  ],
  "icons": {
    "24": "icons/[email protected]",
    "48": "icons/[email protected]"
  },
  "browser_action": {
    "default_icon": {
      "24": "icons/[email protected]",
      "48": "icons/[email protected]"
    },
    "theme_icons": [
      {
        "light": "icons/[email protected]",
        "dark": "icons/[email protected]",
        "size": 24
      },
      {
        "light": "icons/[email protected]",
        "dark": "icons/[email protected]",
        "size": 48
      }
    ],
    "default_title": "__MSG_extension_name__",
    "browser_style": true
  },
  "options_ui": {
    "page": "options.html",
    "browser_style": true,
    "open_in_tab": true
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "sidebar_action": {
    "default_title": "Tab Image Saver",
    "default_panel": "sidebar.html",
    "default_icon": "icons/[email protected]"
  },
  "commands": {
    "default": {
      "suggested_key": {},
      "description": "__MSG_commands_default_action_label__"
    },
    "active": {
      "suggested_key": {},
      "description": "__MSG_commands_active_action_label__"
    },
    "left": {
      "suggested_key": {},
      "description": "__MSG_commands_left_action_label__"
    },
    "right": {
      "suggested_key": {},
      "description": "__MSG_commands_right_action_label__"
    },
    "all": {
      "suggested_key": {},
      "description": "__MSG_commands_all_action_label__"
    }
  },
  "version": "4.5.3",
  "description": "__MSG_extension_description__",
  "homepage_url": "https://github.com/mcdamo/tab-image-saver"
}