Link Preview

Link Preview

Generates preview window of link that follows mouse when hovering specific elements

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Link Preview",
  "description": "Generates preview window of link that follows mouse when hovering specific elements",
  "version": "1.3",
  "background": {
    "scripts": [
      "thirdparty/jquery.min.js"
    ]
  },
  "permissions": [
    "tabs",
    "http://*/*",
    "https://*/*",
    "file:///*/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://www.kijiji.ca/b*",
        "https://www.kijiji.ca/b*"
      ],
      "js": [
        "thirdparty/jquery.min.js",
        "webSpecific/kijiji.js",
        "webSpecific/createFields.js",
        "previewWindow.js",
        "bindings.js",
        "main.js"
      ],
      "css": [
        "tailDiv.css"
      ],
      "run_at": "document_start"
    }
  ]
}