Link Preview

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

什麼是Link Preview?

Link Preview是由http://codeinchaos.com開發的Chrome擴展程式,該擴展的主要功能是“Right click on a link to quickly preview its content in a nice summary card, without leaving the page.”。

擴展截圖

screenshot
screenshot

下載Link Preview擴展crx文件

下載Link Preview擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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!                    

擴展基本資訊

名稱 Link Preview Link Preview
ID akccjphfbbgdhlmpeglpipbapnddbkof
官方網址 https://chrome.google.com/webstore/detail/link-preview/akccjphfbbgdhlmpeglpipbapnddbkof
簡介 Right click on a link to quickly preview its content in a nice summary card, without leaving the page.
檔案大小 18.83 KB
安裝次數 373
目前版本 1.0.0
更新時間 2014-08-30
上架時間 2014-08-30
評分 1.38/5 共 8 次評分
開發者 http://codeinchaos.com
付費類型 free
擴展官網 https://github.com/codeinchaos/chrome-link-preview/
說明頁面URL https://github.com/codeinchaos/chrome-link-preview/issues
支援的語言 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"
    ]
}