Link Preview Sidebar

Preview links in a sidebar instead of a new tab.

Co je Link Preview Sidebar?

Link Preview Sidebar je rozšíření Chrome vyvinuté felixfbecker, a jeho hlavní funkcí je „Preview links in a sidebar instead of a new tab.“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Link Preview Sidebar

Stáhněte si soubory rozšíření Link Preview Sidebar ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název Link Preview Sidebar Link Preview Sidebar
ID cdnefgebicfnnnjmbnlldhfjmcblfhob
Oficiální URL https://chromewebstore.google.com/detail/link-preview-sidebar/cdnefgebicfnnnjmbnlldhfjmcblfhob
Popis Preview links in a sidebar instead of a new tab.
Velikost souboru 74.34 KB
Počet instalací 2,158
Aktuální Verze 1.0.6
Poslední Aktualizace 2020-12-31
Datum Vydání 2020-12-12
Hodnocení 4.29/5 Celkem 17 Hodnocení
Vývojář felixfbecker
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/felixfbecker/link-preview-sidebar
URL Stránky Nápovědy https://github.com/felixfbecker/link-preview-sidebar/issues
Podporované Jazyky 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"
        }
    }
}