Image extract

Image extract

Extracts all the images in the current tab and shows you them

Merlin
Additional files are visible only to premium users

manifest.json


{
  "description": "Pulls images out of the current tab",
  "manifest_version": 2,
  "homepage_url": "https://github.com/Skeletonxf/image-extract",
  "name": "Image extract",
  "version": "1.5.1",
  "permissions": [
    "contextMenus",
    "activeTab",
    "storage"
  ],
  "background": {
    "page": "/background/index.html"
  },
  "browser_action": {
    "browser_style": true,
    "default_icon": "icons/arrow.svg",
    "default_title": "Image extract"
  },
  "options_ui": {
    "page": "/settings/settings.html"
  },
  "commands": {
    "extract-shortcut-1": {
      "suggested_key": {
        "default": "Ctrl+E"
      },
      "description": "Run image extract on current tab from keyboard shortcut (1)"
    },
    "extract-shortcut-2": {
      "suggested_key": {
        "default": "Alt+Shift+E"
      },
      "description": "Run image extract on current tab from keyboard shortcut (2)"
    },
    "extract-shortcut-3": {
      "suggested_key": {
        "default": "Alt+Shift+I"
      },
      "description": "Run image extract on current tab from keyboard shortcut (3)"
    }
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "{6381b0dc-8bef-47d0-8c31-6fffbdd8ec7f}"
    }
  }
}