Link Preview

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

Qu'est-ce que Link Preview ?

Link Preview est une extension Chrome développée par http://codeinchaos.com, et sa fonction principale est "Right click on a link to quickly preview its content in a nice summary card, without leaving the page.".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Link Preview

Téléchargez les fichiers d'extension Link Preview au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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!                    

Informations de Base sur l'Extension

Nom Link Preview Link Preview
ID akccjphfbbgdhlmpeglpipbapnddbkof
URL Officiel 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.
Taille du Fichier 18.83 KB
Nombre d'Installations 373
Version Actuelle 1.0.0
Dernière Mise à Jour 2014-08-30
Date de Publication 2014-08-30
Évaluation 1.38/5 Total 8 Évaluations
Développeur http://codeinchaos.com
Type de Paiement free
Site Web de l'Extension https://github.com/codeinchaos/chrome-link-preview/
URL de la Page d'Aide https://github.com/codeinchaos/chrome-link-preview/issues
Langues Prises en Charge 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"
    ]
}