WorkFlowy Link Preview

Link Previewer for https://workflowy.com/

O que é WorkFlowy Link Preview?

WorkFlowy Link Preview é uma extensão do Chrome desenvolvida por Roman Chukhan | @roman_chukhan, e sua principal característica é "Link Previewer for https://workflowy.com/".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão WorkFlowy Link Preview

Baixe arquivos de extensão WorkFlowy Link Preview 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

                        This Google Chrome browser extension allows users to preview any URL inside a WorkFlowy bullet node.

The extension fetches provided URL meta tags data (image, title and description) in the background process and embeds it to the WorkFlowy bullet node. Alongside with URL preview, this extension allows users to preview images and gifs.

Usage:

Preview any URL using the following syntax:
!(your URL goes here inside the round brackets)

For example:
!(https://www.booking.com/Share-Tz4hNz)

or image link:
!(https://r-cf.bstatic.com/images/hotel/max1024x768/190/190867355.jpg)

Version v1.1.0 update:
- change preview layout + highlight embedded area with the vertical line
- display embedded image according to its aspect ratio

Version v1.1.1 update:
- extension is available for WorkFlowy Beta 🙌

Extension source code is open-sourced here:
https://github.com/karatsuba/workflowy-link-preview                    

Informações Básicas da Extensão

Nome WorkFlowy Link Preview WorkFlowy Link Preview
ID fljjakgbhacdbaakanomobomelbkjafm
URL Oficial https://chromewebstore.google.com/detail/workflowy-link-preview/fljjakgbhacdbaakanomobomelbkjafm
Descrição Link Previewer for https://workflowy.com/
Tamanho do Arquivo 89.99 KB
Contagem de Instalações 248
Versão Atual 1.1.1
Última Atualização 2020-06-25
Data de Publicação 2020-06-24
Classificação 3.86/5 Total de 7 Avaliações
Desenvolvedor Roman Chukhan | @roman_chukhan
Email [email protected]
Tipo de Pagamento free
URL da Página de Ajuda https://twitter.com/roman_chukhan
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "WorkFlowy Link Preview",
    "description": "Link Previewer for https:\/\/workflowy.com\/",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.workflowy.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "manifest_version": 2,
    "version": "1.1.1"
}