Upload image from URL

Upload image from URL

Upload images & files directly from a URL, without needing to have them on your computer!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "description": "Upload images & files directly from a URL, without needing to have them on your computer!",
  "version": "1.2.1",
  "name": "Upload image from URL",
  "permissions": [
    "<all_urls>"
  ],
  "background": {
    "page": "background.html"
  },
  "browser_action": {
    "default_popup": "popup.html",
    "default_icon": "public/icon.png"
  },
  "icons": {
    "128": "public/icon.png"
  },
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Ctrl+Shift+U"
      }
    }
  },
  "web_accessible_resources": [
    "public/**/*.png",
    "public/**/*.jpg",
    "public/*.woff2"
  ],
  "manifest_version": 2,
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}