MagicShot - Screenshots made Beautiful

MagicShot - Screenshots made Beautiful

Capture a screenshot of your page or of a selected area and turn it into a beautiful image for your social media

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "MagicShot - Screenshots made Beautiful",
  "short_name": "magicshot",
  "version": "1.0.0",
  "description": "Capture a screenshot of your page or of a selected area and turn it into a beautiful image for your social media",
  "background": {
    "service_worker": "background.js"
  },
  "icons": {
    "16": "/icons/icon-16.png",
    "32": "/icons/icon-32.png",
    "64": "/icons/icon-64.png",
    "128": "/icons/icon-128.png"
  },
  "permissions": [
    "activeTab",
    "tabs",
    "scripting"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "inject.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "fileUpload.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "host_permissions": [
    "https://magicshot.app/editor"
  ],
  "action": {
    "default_title": "MagicShot - Screenshots made Beautiful",
    "default_popup": "index.html"
  }
}