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
公式URL 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"
    ]
}