Link Preview

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

¿Qué es Link Preview?

Link Preview es una extensión de Chrome desarrollada por http://codeinchaos.com, y su función principal es "Right click on a link to quickly preview its content in a nice summary card, without leaving the page.".

Capturas de Pantalla de la Extensión

screenshot
screenshot

Descargar Archivo CRX de la Extensión Link Preview

Descarga archivos de extensión Link Preview en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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!                    

Información Básica de la Extensión

Nombre Link Preview Link Preview
ID akccjphfbbgdhlmpeglpipbapnddbkof
URL Oficial https://chrome.google.com/webstore/detail/link-preview/akccjphfbbgdhlmpeglpipbapnddbkof
Descripción Right click on a link to quickly preview its content in a nice summary card, without leaving the page.
Tamaño del Archivo 18.83 KB
Cantidad de Instalaciones 373
Versión Actual 1.0.0
Última Actualización 2014-08-30
Fecha de Publicación 2014-08-30
Calificación 1.38/5 Total de 8 Calificaciones
Desarrollador http://codeinchaos.com
Tipo de Pago free
Sitio Web de la Extensión https://github.com/codeinchaos/chrome-link-preview/
URL de la Página de Ayuda https://github.com/codeinchaos/chrome-link-preview/issues
Idiomas Soportados 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"
    ]
}