Link Preview

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

Was ist Link Preview?

Link Preview ist eine Chrome-Erweiterung, die von http://codeinchaos.com entwickelt wurde, und ihr Hauptmerkmal ist "Right click on a link to quickly preview its content in a nice summary card, without leaving the page.".

Erweiterungsscreenshots

screenshot
screenshot

Link Preview-Erweiterungs-CRX-Datei herunterladen

Laden Sie Link Preview-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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!                    

Grundlegende Informationen zur Erweiterung

Name Link Preview Link Preview
ID akccjphfbbgdhlmpeglpipbapnddbkof
Offizielle URL https://chrome.google.com/webstore/detail/link-preview/akccjphfbbgdhlmpeglpipbapnddbkof
Beschreibung Right click on a link to quickly preview its content in a nice summary card, without leaving the page.
Dateigröße 18.83 KB
Installationsanzahl 373
Aktuelle Version 1.0.0
Letztes Update 2014-08-30
Veröffentlichungsdatum 2014-08-30
Bewertung 1.38/5 Insgesamt 8 Bewertungen
Entwickler http://codeinchaos.com
Zahlungsart free
Erweiterungswebsite https://github.com/codeinchaos/chrome-link-preview/
Hilfeseite URL https://github.com/codeinchaos/chrome-link-preview/issues
Unterstützte Sprachen 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"
    ]
}