Quick Link Previews

Quick Link Previews

Get a quick preview of links before visiting.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Quick Link Previews",
  "short_name": "Link Preview",
  "version": "1.0.1",
  "description": "Get a quick preview of links before visiting.",
  "homepage_url": "https://github.com/TheSavior/LinkViewer/",
  "manifest_version": 2,
  "permissions": [
    "tabs",
    "contentSettings"
  ],
  "authors": "Open Source Contributors",
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "css": [
        "ext-css.css"
      ],
      "js": [
        "ext.js"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    "frame/index.html",
    "frame/main.js",
    "frame/total.css"
  ]
}