WorkFlowy Link Preview

Link Previewer for https://workflowy.com/

什麼是WorkFlowy Link Preview?

WorkFlowy Link Preview是由Roman Chukhan | @roman_chukhan開發的Chrome擴展程式,該擴展的主要功能是“Link Previewer for https://workflowy.com/”。

擴展截圖

screenshot
screenshot

下載WorkFlowy Link Preview擴展crx文件

下載WorkFlowy Link Preview擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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                    

擴展基本資訊

名稱 WorkFlowy Link Preview WorkFlowy Link Preview
ID fljjakgbhacdbaakanomobomelbkjafm
官方網址 https://chromewebstore.google.com/detail/workflowy-link-preview/fljjakgbhacdbaakanomobomelbkjafm
簡介 Link Previewer for https://workflowy.com/
檔案大小 89.99 KB
安裝次數 248
目前版本 1.1.1
更新時間 2020-06-25
上架時間 2020-06-24
評分 3.86/5 共 7 次評分
開發者 Roman Chukhan | @roman_chukhan
電子郵箱 [email protected]
付費類型 free
說明頁面URL https://twitter.com/roman_chukhan
支援的語言 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"
}