Link Preview

Generates preview window of link that follows mouse when hovering specific elements

Link Previewとは何ですか?

Link PreviewはdapoDevによって開発されたChromeの拡張機能で、その主な機能は「Generates preview window of link that follows mouse when hovering specific elements」です。

拡張機能のスクリーンショット

screenshot

Link Preview拡張機能のCRXファイルをダウンロード

Link Preview拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                                            

拡張機能の基本情報

名前 Link Preview Link Preview
ID bjoabjghhaegfioipdfaggpecmegfelp
公式URL https://chrome.google.com/webstore/detail/link-preview/bjoabjghhaegfioipdfaggpecmegfelp
説明 Generates preview window of link that follows mouse when hovering specific elements
ファイルサイズ 39.05 KB
インストール数 230
現在のバージョン 1.3
最終更新日 2017-12-15
公開日 2017-12-15
評価 1.00/5 合計 2 レビュー
開発者 dapoDev
支払い方法 free
拡張機能のウェブサイト https://github.com/emdap/LinkPreview
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Link Preview",
    "description": "Generates preview window of link that follows mouse when hovering specific elements",
    "version": "1.3",
    "background": {
        "scripts": [
            "thirdparty\/jquery.min.js"
        ]
    },
    "permissions": [
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "file:\/\/\/*\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/www.kijiji.ca\/b*",
                "https:\/\/www.kijiji.ca\/b*"
            ],
            "js": [
                "thirdparty\/jquery.min.js",
                "webSpecific\/kijiji.js",
                "webSpecific\/createFields.js",
                "previewWindow.js",
                "bindings.js",
                "main.js"
            ],
            "css": [
                "tailDiv.css"
            ],
            "run_at": "document_start"
        }
    ]
}