ImgScoop

ImgScoop

Quick actions for saving images to your device.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "ImgScoop",
  "version": "0.19",
  "description": "Quick actions for save images to your device.",
  "browser_specific_settings": {
    "gecko": {
      "id": "[email protected]",
      "strict_min_version": "70.0"
    }
  },
  "icons": {
    "256": "logo-256.png"
  },
  "options_ui": {
    "page": "imgscoop_options.html",
    "open_in_tab": true
  },
  "page_action": {
    "default_icon": {
      "256": "pageaction-icon-256.png"
    }
  },
  "permissions": [
    "cookies",
    "downloads",
    "storage",
    "tabs"
  ],
  "background": {
    "scripts": [
      "imgscoop_background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "imgscoop_content.js"
      ]
    }
  ]
}