WorkFlowy Link Preview

Link Previewer for https://workflowy.com/

Qu'est-ce que WorkFlowy Link Preview ?

WorkFlowy Link Preview est une extension Chrome développée par Roman Chukhan | @roman_chukhan, et sa fonction principale est "Link Previewer for https://workflowy.com/".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension WorkFlowy Link Preview

Téléchargez les fichiers d'extension WorkFlowy Link Preview au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom WorkFlowy Link Preview WorkFlowy Link Preview
ID fljjakgbhacdbaakanomobomelbkjafm
URL Officiel https://chromewebstore.google.com/detail/workflowy-link-preview/fljjakgbhacdbaakanomobomelbkjafm
Description Link Previewer for https://workflowy.com/
Taille du Fichier 89.99 KB
Nombre d'Installations 248
Version Actuelle 1.1.1
Dernière Mise à Jour 2020-06-25
Date de Publication 2020-06-24
Évaluation 3.86/5 Total 7 Évaluations
Développeur Roman Chukhan | @roman_chukhan
Email [email protected]
Type de Paiement free
URL de la Page d'Aide https://twitter.com/roman_chukhan
Langues Prises en Charge 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"
}