WorkFlowy Link Preview

Link Previewer for https://workflowy.com/

ما هو WorkFlowy Link Preview؟

WorkFlowy Link Preview هو إضافة Chrome تم تطويرها بواسطة Roman Chukhan | @roman_chukhan، والميزة الرئيسية لها هي "Link Previewer for https://workflowy.com/".

لقطات شاشة التمديد

screenshot
screenshot

تحميل ملف CRX للإضافة WorkFlowy Link Preview

قم بتنزيل ملفات الامتداد WorkFlowy Link Preview بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
البريد الإلكتروني [email protected]
نوع الدفع free
عنوان صفحة المساعدة 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"
}