Link Preview

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

Wat is Link Preview?

Link Preview is een Chrome-extensie ontwikkeld door http://codeinchaos.com, en de belangrijkste functie is "Right click on a link to quickly preview its content in a nice summary card, without leaving the page.".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie Link Preview

Download Link Preview-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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!                    

Basisinformatie over de Extensie

Naam Link Preview Link Preview
ID akccjphfbbgdhlmpeglpipbapnddbkof
Officiële URL https://chrome.google.com/webstore/detail/link-preview/akccjphfbbgdhlmpeglpipbapnddbkof
Beschrijving Right click on a link to quickly preview its content in a nice summary card, without leaving the page.
Bestandsgrootte 18.83 KB
Aantal Installaties 373
Huidige Versie 1.0.0
Laatst Bijgewerkt 2014-08-30
Publicatiedatum 2014-08-30
Beoordeling 1.38/5 Totaal 8 Beoordelingen
Ontwikkelaar http://codeinchaos.com
Betalingswijze free
Extensiewebsite https://github.com/codeinchaos/chrome-link-preview/
Help Pagina-URL https://github.com/codeinchaos/chrome-link-preview/issues
Ondersteunde Talen 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"
    ]
}