Link Preview

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

Apa itu Link Preview?

Link Preview adalah ekstensi Chrome yang dikembangkan oleh http://codeinchaos.com, dan fitur utamanya adalah "Right click on a link to quickly preview its content in a nice summary card, without leaving the page.".

Screenshot Ekstensi

screenshot
screenshot

Unduh Berkas CRX Ekstensi Link Preview

Unduh file ekstensi Link Preview dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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!                    

Informasi Dasar Ekstensi

Nama Link Preview Link Preview
ID akccjphfbbgdhlmpeglpipbapnddbkof
URL Resmi https://chrome.google.com/webstore/detail/link-preview/akccjphfbbgdhlmpeglpipbapnddbkof
Deskripsi Right click on a link to quickly preview its content in a nice summary card, without leaving the page.
Ukuran File 18.83 KB
Jumlah Instalasi 373
Versi Saat Ini 1.0.0
Terakhir Diperbarui 2014-08-30
Tanggal Publikasi 2014-08-30
Penilaian 1.38/5 Total 8 Penilaian
Pengembang http://codeinchaos.com
Tipe Pembayaran free
Situs Ekstensi https://github.com/codeinchaos/chrome-link-preview/
URL Halaman Bantuan https://github.com/codeinchaos/chrome-link-preview/issues
Bahasa yang Didukung 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"
    ]
}