LightShot Downloader

LightShot Downloader

Extracts the URL from prnt.sc domains and allows the user to download and copy the image to their clipboard

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "LightShot Downloader",
  "version": "1.0",
  "description": "Extracts the URL from prnt.sc domains and allows the user to download and copy the image to their clipboard",
  "author": "Yaber Hasan",
  "icons": {
    "16": "icons/icon-16.png",
    "32": "icons/icon-32.png",
    "48": "icons/icon-48.png",
    "128": "icons/icon-128.png"
  },
  "action": {
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_end"
    }
  ],
  "host_permissions": [
    "*://prnt.sc/*"
  ],
  "permissions": [
    "storage"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}