Image Compressor

Image Compressor

Download compressed image directly from the current tab just with a right click! :)

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Image Compressor",
  "version": "1.0.1",
  "manifest_version": 2,
  "description": "Download compressed image directly from the current tab just with a right click! :)",
  "icons": {
    "16": "img/x16.png",
    "48": "img/x48.png",
    "128": "img/x128.png"
  },
  "permissions": [
    "downloads",
    "contextMenus"
  ],
  "background": {
    "persistent": false,
    "page": "background.html"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/jquery.js",
        "js/main.js"
      ],
      "css": [
        "css/main.css"
      ]
    }
  ]
}