Link preview

Link preview

Preview any link by hovering on it.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Link preview",
  "version": "1.0",
  "short_name": "Preview",
  "description": "Preview any link by hovering on it.",
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ],
      "css": [
        "stylesheet.css"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    "assets/*.*"
  ],
  "icons": {
    "16": "favicon-16x16.png",
    "32": "favicon-32x32.png"
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}