I'm a Gentleman

I'm a Gentleman

Easily save images with a click, gestures or the extension button.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "I'm a Gentleman",
  "version": "40",
  "manifest_version": 3,
  "description": "__MSG_appDesc__",
  "default_locale": "en",
  "options_page": "options.html",
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_icon": "19.png",
    "default_title": "__MSG_buttonTip__"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "images.js"
      ],
      "run_at": "document_end"
    }
  ],
  "icons": {
    "16": "16.png",
    "48": "48.png",
    "128": "128.png"
  },
  "permissions": [
    "storage",
    "downloads",
    "activeTab"
  ],
  "host_permissions": [
    "<all_urls>"
  ]
}