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/"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย WorkFlowy Link Preview
ดาวน์โหลดไฟล์ส่วนขยาย 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 |
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 |
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" } |