Image Handling Shortcuts

Image Handling Shortcuts

Clicking to save the image? Clicking to waste time! This extension will provide you with shortcuts to deal with images.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Image Handling Shortcuts",
  "description": "Clicking to save the image? Clicking to waste time! This extension will provide you with shortcuts to deal with images.",
  "version": "1.1",
  "manifest_version": 3,
  "action": {
    "default_popup": "./popup.html"
  },
  "author": "Zeyad Shaban",
  "permissions": [],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "./index.js"
      ]
    }
  ],
  "icons": {
    "32": "./icon_32.png",
    "128": "./icon_128.png"
  }
}