Link Preview

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

What is Link Preview?

Link Preview is a Chrome extension developed by dapoDev, and its main feature is "Generates preview window of link that follows mouse when hovering specific elements".

Extension Screenshots

screenshot

Download Link Preview Extension CRX File

Download Link Preview extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                                            

Extension Basic Information

Name Link Preview Link Preview
ID bjoabjghhaegfioipdfaggpecmegfelp
Official URL https://chrome.google.com/webstore/detail/link-preview/bjoabjghhaegfioipdfaggpecmegfelp
Description Generates preview window of link that follows mouse when hovering specific elements
File Size 39.05 KB
Installation Count 230
Current Version 1.3
Last Updated 2017-12-15
Publish Date 2017-12-15
Rating 1.00/5 Total 2 Ratings
Developer dapoDev
Payment Type free
Extension Website https://github.com/emdap/LinkPreview
Supported Languages en
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"
        }
    ]
}