Link Preview

Right click on a link to quickly preview its content in a nice summary card, without leaving the page.

What is Link Preview?

Link Preview is a Chrome extension developed by http://codeinchaos.com, and its main feature is "Right click on a link to quickly preview its content in a nice summary card, without leaving the page.".

Extension Screenshots

screenshot
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

                        Right click on a link to quickly preview its content in a nice summary card, without leaving the page!

NOTE: there is currently a bug on HTTPS pages with Embedly Cards, we are working on an update with Embedly's help!                    

Extension Basic Information

Name Link Preview Link Preview
ID akccjphfbbgdhlmpeglpipbapnddbkof
Official URL https://chrome.google.com/webstore/detail/link-preview/akccjphfbbgdhlmpeglpipbapnddbkof
Description Right click on a link to quickly preview its content in a nice summary card, without leaving the page.
File Size 18.83 KB
Installation Count 373
Current Version 1.0.0
Last Updated 2014-08-30
Publish Date 2014-08-30
Rating 1.38/5 Total 8 Ratings
Developer http://codeinchaos.com
Payment Type free
Extension Website https://github.com/codeinchaos/chrome-link-preview/
Help Page URL https://github.com/codeinchaos/chrome-link-preview/issues
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "1.0.0",
    "manifest_version": 2,
    "name": "Link Preview",
    "description": "Right click on a link to quickly preview its content in a nice summary card, without leaving the page.",
    "author": "Ahmad Nassri  (http:\/\/ahmadnassri.com)",
    "icons": {
        "16": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    },
    "background": {
        "scripts": [
            "main.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "modal.js"
            ]
        }
    ],
    "permissions": [
        "tabs",
        "contextMenus",
        "https:\/\/cdn.embedly.com\/widgets\/platform.js"
    ],
    "content_security_policy": "script-src 'self' https:\/\/cdn.embedly.com\/widgets\/; object-src 'self'",
    "web_accessible_resources": [
        "popup.html"
    ]
}