Link Preview Sidebar

Preview links in a sidebar instead of a new tab.

What is Link Preview Sidebar?

Link Preview Sidebar is a Chrome extension developed by felixfbecker, and its main feature is "Preview links in a sidebar instead of a new tab.".

Extension Screenshots

screenshot

Download Link Preview Sidebar Extension CRX File

Download Link Preview Sidebar extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Link Preview Sidebar Link Preview Sidebar
ID cdnefgebicfnnnjmbnlldhfjmcblfhob
Official URL https://chromewebstore.google.com/detail/link-preview-sidebar/cdnefgebicfnnnjmbnlldhfjmcblfhob
Description Preview links in a sidebar instead of a new tab.
File Size 74.34 KB
Installation Count 2,158
Current Version 1.0.6
Last Updated 2020-12-31
Publish Date 2020-12-12
Rating 4.29/5 Total 17 Ratings
Developer felixfbecker
Email [email protected]
Payment Type free
Extension Website https://github.com/felixfbecker/link-preview-sidebar
Help Page URL https://github.com/felixfbecker/link-preview-sidebar/issues
Supported Languages 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"
        }
    }
}