Link Preview Sidebar

Preview links in a sidebar instead of a new tab.

Co to jest Link Preview Sidebar?

Link Preview Sidebar to rozszerzenie Chrome opracowane przez felixfbecker, a jego główną funkcją jest „Preview links in a sidebar instead of a new tab.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Link Preview Sidebar

Pobierz pliki rozszerzeń Link Preview Sidebar w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Link Preview Sidebar Link Preview Sidebar
ID cdnefgebicfnnnjmbnlldhfjmcblfhob
Oficjalny URL https://chromewebstore.google.com/detail/link-preview-sidebar/cdnefgebicfnnnjmbnlldhfjmcblfhob
Opis Preview links in a sidebar instead of a new tab.
Rozmiar pliku 74.34 KB
Liczba instalacji 2,158
Aktualna Wersja 1.0.6
Ostatnia Aktualizacja 2020-12-31
Data Publikacji 2020-12-12
Ocena 4.29/5 Łącznie 17 Oceny
Deweloper felixfbecker
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/felixfbecker/link-preview-sidebar
Adres URL Strony Pomocy https://github.com/felixfbecker/link-preview-sidebar/issues
Obsługiwane Języki 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"
        }
    }
}