Link Preview

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

Co to jest Link Preview?

Link Preview to rozszerzenie Chrome opracowane przez http://codeinchaos.com, a jego główną funkcją jest „Right click on a link to quickly preview its content in a nice summary card, without leaving the page.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Link Preview

Pobierz pliki rozszerzeń Link Preview w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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!                    

Podstawowe informacje o rozszerzeniu

Nazwa Link Preview Link Preview
ID akccjphfbbgdhlmpeglpipbapnddbkof
Oficjalny URL https://chrome.google.com/webstore/detail/link-preview/akccjphfbbgdhlmpeglpipbapnddbkof
Opis Right click on a link to quickly preview its content in a nice summary card, without leaving the page.
Rozmiar pliku 18.83 KB
Liczba instalacji 373
Aktualna Wersja 1.0.0
Ostatnia Aktualizacja 2014-08-30
Data Publikacji 2014-08-30
Ocena 1.38/5 Łącznie 8 Oceny
Deweloper http://codeinchaos.com
Typ Płatności free
Strona Rozszerzenia https://github.com/codeinchaos/chrome-link-preview/
Adres URL Strony Pomocy https://github.com/codeinchaos/chrome-link-preview/issues
Obsługiwane Języki 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"
    ]
}