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
公式URL 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
Eメール [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"
}