Link Preview

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

O que é Link Preview?

Link Preview é uma extensão do Chrome desenvolvida por http://codeinchaos.com, e sua principal característica é "Right click on a link to quickly preview its content in a nice summary card, without leaving the page.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Link Preview

Baixe arquivos de extensão Link Preview no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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!                    

Informações Básicas da Extensão

Nome Link Preview Link Preview
ID akccjphfbbgdhlmpeglpipbapnddbkof
URL Oficial https://chrome.google.com/webstore/detail/link-preview/akccjphfbbgdhlmpeglpipbapnddbkof
Descrição Right click on a link to quickly preview its content in a nice summary card, without leaving the page.
Tamanho do Arquivo 18.83 KB
Contagem de Instalações 373
Versão Atual 1.0.0
Última Atualização 2014-08-30
Data de Publicação 2014-08-30
Classificação 1.38/5 Total de 8 Avaliações
Desenvolvedor http://codeinchaos.com
Tipo de Pagamento free
Site da Extensão https://github.com/codeinchaos/chrome-link-preview/
URL da Página de Ajuda https://github.com/codeinchaos/chrome-link-preview/issues
Idiomas Suportados 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"
    ]
}