Link Preview Sidebar

Preview links in a sidebar instead of a new tab.

Link Preview Sidebarとは何ですか?

Link Preview Sidebarはfelixfbeckerによって開発されたChromeの拡張機能で、その主な機能は「Preview links in a sidebar instead of a new tab.」です。

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

screenshot

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

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

拡張機能の使用方法

                        There are two ways to open a link in the sidebar:

• Right click on a link and select "Open in sidebar"
• Hold the Alt key while clicking a link (⌥ on macOS)




Icon made by Kirill Kazachek from www.flaticon.com.                    

拡張機能の基本情報

名前 Link Preview Sidebar Link Preview Sidebar
ID cdnefgebicfnnnjmbnlldhfjmcblfhob
公式URL https://chromewebstore.google.com/detail/link-preview-sidebar/cdnefgebicfnnnjmbnlldhfjmcblfhob
説明 Preview links in a sidebar instead of a new tab.
ファイルサイズ 74.34 KB
インストール数 2,158
現在のバージョン 1.0.6
最終更新日 2020-12-31
公開日 2020-12-12
評価 4.29/5 合計 17 レビュー
開発者 felixfbecker
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/felixfbecker/link-preview-sidebar
ヘルプページのURL https://github.com/felixfbecker/link-preview-sidebar/issues
対応言語 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Link Preview Sidebar",
    "description": "Preview links in a sidebar instead of a new tab.",
    "version": "1.0.6",
    "permissions": [
        "contextMenus",
        "webRequest",
        "webRequestBlocking",
        "tabs",
        ""
    ],
    "icons": {
        "128": "images\/icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "src\/content.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "src\/content.js",
        "src\/content.css",
        "src\/embedder.html"
    ],
    "background": {
        "scripts": [
            "src\/background.js"
        ]
    },
    "browser_specific_settings": {
        "gecko": {
            "id": "link-preview-sidebar@felixfbecker"
        }
    }
}