Link Preview Sidebar

Preview links in a sidebar instead of a new tab.

O que é Link Preview Sidebar?

Link Preview Sidebar é uma extensão do Chrome desenvolvida por felixfbecker, e sua principal característica é "Preview links in a sidebar instead of a new tab.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Link Preview Sidebar

Baixe arquivos de extensão Link Preview Sidebar no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Link Preview Sidebar Link Preview Sidebar
ID cdnefgebicfnnnjmbnlldhfjmcblfhob
URL Oficial https://chromewebstore.google.com/detail/link-preview-sidebar/cdnefgebicfnnnjmbnlldhfjmcblfhob
Descrição Preview links in a sidebar instead of a new tab.
Tamanho do Arquivo 74.34 KB
Contagem de Instalações 2,158
Versão Atual 1.0.6
Última Atualização 2020-12-31
Data de Publicação 2020-12-12
Classificação 4.29/5 Total de 17 Avaliações
Desenvolvedor felixfbecker
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/felixfbecker/link-preview-sidebar
URL da Página de Ajuda https://github.com/felixfbecker/link-preview-sidebar/issues
Idiomas Suportados 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"
        }
    }
}