Link Preview

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

Hvad er Link Preview?

Link Preview er en Chrome-udvidelse udviklet af http://codeinchaos.com, og dens hovedfunktion er "Right click on a link to quickly preview its content in a nice summary card, without leaving the page.".

Udvidelsesskærmbilleder

screenshot
screenshot

Download Link Preview-udvidelses-CRX-fil

Download Link Preview-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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!                    

Grundlæggende oplysninger om udvidelsen

Navn Link Preview Link Preview
ID akccjphfbbgdhlmpeglpipbapnddbkof
Officiel URL https://chrome.google.com/webstore/detail/link-preview/akccjphfbbgdhlmpeglpipbapnddbkof
Beskrivelse Right click on a link to quickly preview its content in a nice summary card, without leaving the page.
Filstørrelse 18.83 KB
Antal Installationer 373
Nuværende Version 1.0.0
Senest Opdateret 2014-08-30
Udgivelsesdato 2014-08-30
Bedømmelse 1.38/5 Samlet 8 Bedømmelser
Udvikler http://codeinchaos.com
Betalingsmetode free
Udvidelseswebsted https://github.com/codeinchaos/chrome-link-preview/
Hjælpeside-URL https://github.com/codeinchaos/chrome-link-preview/issues
Understøttede Sprog 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"
    ]
}