WorkFlowy Link Preview

Link Previewer for https://workflowy.com/

Cos'è WorkFlowy Link Preview?

WorkFlowy Link Preview è un'estensione di Chrome sviluppata da Roman Chukhan | @roman_chukhan, e la sua funzione principale è "Link Previewer for https://workflowy.com/".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione WorkFlowy Link Preview

Scarica i file di estensione WorkFlowy Link Preview in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome WorkFlowy Link Preview WorkFlowy Link Preview
ID fljjakgbhacdbaakanomobomelbkjafm
URL Ufficiale https://chromewebstore.google.com/detail/workflowy-link-preview/fljjakgbhacdbaakanomobomelbkjafm
Descrizione Link Previewer for https://workflowy.com/
Dimensione del File 89.99 KB
Conteggio Installazioni 248
Versione Corrente 1.1.1
Ultimo Aggiornamento 2020-06-25
Data di Pubblicazione 2020-06-24
Valutazione 3.86/5 Totale 7 Valutazioni
Sviluppatore Roman Chukhan | @roman_chukhan
Email [email protected]
Tipo di Pagamento free
URL della Pagina di Aiuto https://twitter.com/roman_chukhan
Lingue Supportate 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"
}