Link Preview

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

Cos'è Link Preview?

Link Preview è un'estensione di Chrome sviluppata da http://codeinchaos.com, e la sua funzione principale è "Right click on a link to quickly preview its content in a nice summary card, without leaving the page.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Link Preview

Scarica i file di estensione Link Preview in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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!                    

Informazioni di Base sull'Estensione

Nome Link Preview Link Preview
ID akccjphfbbgdhlmpeglpipbapnddbkof
URL Ufficiale https://chrome.google.com/webstore/detail/link-preview/akccjphfbbgdhlmpeglpipbapnddbkof
Descrizione Right click on a link to quickly preview its content in a nice summary card, without leaving the page.
Dimensione del File 18.83 KB
Conteggio Installazioni 373
Versione Corrente 1.0.0
Ultimo Aggiornamento 2014-08-30
Data di Pubblicazione 2014-08-30
Valutazione 1.38/5 Totale 8 Valutazioni
Sviluppatore http://codeinchaos.com
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/codeinchaos/chrome-link-preview/
URL della Pagina di Aiuto https://github.com/codeinchaos/chrome-link-preview/issues
Lingue Supportate 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"
    ]
}