Save Image As You Want

Save Image As You Want

Now you can easily save any image in JPEG, PNG, WebP or Base64 format.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "__MSG_extName__",
  "short_name": "__MSG_extShortName__",
  "description": "__MSG_extDescription__",
  "version": "2.7.18",
  "minimum_chrome_version": "31.0.0.0",
  "default_locale": "en",
  "icons": {
    "16": "images/icon-x16.png",
    "32": "images/icon-x32.png",
    "48": "images/icon-x48.png",
    "64": "images/icon-x64.png",
    "128": "images/icon-x128.png"
  },
  "background": {
    "page": "background.html",
    "persistent": true
  },
  "content_scripts": [
    {
      "js": [
        "scripts/contimg.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "browser_action": {
    "default_icon": {
      "19": "images/icon-x19.png",
      "38": "images/icon-x38.png"
    },
    "default_title": "__MSG_extDefaultTitle__",
    "default_popup": "popup.html"
  },
  "web_accessible_resources": [
    "images/*.png"
  ],
  "permissions": [
    "contextMenus",
    "<all_urls>",
    "downloads",
    "storage"
  ]
}