Wix Image Downloader

Wix Image Downloader

This is a custom extension to download images from wix website.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Wix Image Downloader",
  "version": "1.1",
  "offline_enabled": true,
  "description": "This is a custom extension to download images from wix website.",
  "icons": {
    "16": "icon.png",
    "128": "icon_128.png"
  },
  "background": {
    "persistent": false,
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.wixsite.com/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "page_action": {
    "default_title": "Wix Image Downloader",
    "default_popup": "popup.html"
  }
}