Link preview

Preview any link by hovering on it.
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
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"
}