WorkFlowy Link Preview
Link Previewer for https://workflowy.com/
Was ist WorkFlowy Link Preview?
WorkFlowy Link Preview ist eine Chrome-Erweiterung, die von Roman Chukhan | @roman_chukhan entwickelt wurde, und ihr Hauptmerkmal ist "Link Previewer for https://workflowy.com/".
Erweiterungsscreenshots
WorkFlowy Link Preview-Erweiterungs-CRX-Datei herunterladen
Laden Sie WorkFlowy Link Preview-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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
Grundlegende Informationen zur Erweiterung
Name | WorkFlowy Link Preview |
ID | fljjakgbhacdbaakanomobomelbkjafm |
Offizielle URL | https://chromewebstore.google.com/detail/workflowy-link-preview/fljjakgbhacdbaakanomobomelbkjafm |
Beschreibung | Link Previewer for https://workflowy.com/ |
Dateigröße | 89.99 KB |
Installationsanzahl | 248 |
Aktuelle Version | 1.1.1 |
Letztes Update | 2020-06-25 |
Veröffentlichungsdatum | 2020-06-24 |
Bewertung | 3.86/5 Insgesamt 7 Bewertungen |
Entwickler | Roman Chukhan | @roman_chukhan |
[email protected] | |
Zahlungsart | free |
Hilfeseite URL | https://twitter.com/roman_chukhan |
Unterstützte Sprachen | 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" } |