Lazy Linker
Provides previews to external links, images, and videos in articles when a link is hover over.
Lazy Linkerคืออะไร?
Lazy Linker เป็นส่วนขยายของ Chrome ที่พัฒนาโดย orrybaram และคุณลักษณะหลักของมันคือ "Provides previews to external links, images, and videos in articles when a link is hover over."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Lazy Linker
ดาวน์โหลดไฟล์ส่วนขยาย Lazy Linker ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
v0.1.6 Long click instead of hover Have you ever been in the middle of an article and seen a few links that direct you to who knows where? You're usually curious about where it'll take you. Maybe it's a cool supplementary picture, or video. Maybe it's a wikipedia article that helps bolster some facts. If you're like me, you probably never clicked on these links. It's a hassle, and breaks you away from the flow of the article. This extension grabs whatever's hiding in those links and displays it quickly and seamlessly on the same page of your article. Just long-click over the styled links!
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Lazy Linker |
ID | jbjodbggkabkeccacfmeanjekkhbgdhd |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/lazy-linker/jbjodbggkabkeccacfmeanjekkhbgdhd |
คำอธิบาย | Provides previews to external links, images, and videos in articles when a link is hover over. |
ขนาดไฟล์ | 54.37 KB |
จำนวนการติดตั้ง | 258 |
เวอร์ชันปัจจุบัน | 0.1.7 |
อัปเดตครั้งล่าสุด | 2015-03-13 |
วันที่เผยแพร่ | 2015-03-13 |
คะแนน | 2.83/5 รวมทั้งหมด 6 คะแนน |
ผู้พัฒนา | orrybaram |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Lazy Linker", "description": "Provides previews to external links, images, and videos in articles when a link is hover over.", "version": "0.1.7", "permissions": [ "*:\/\/*\/*", "history" ], "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "css": [ "css\/main.css" ], "js": [ "lib\/jquery.2.0.3.min.js", "content.js" ] } ], "background": { "scripts": [ "background.js" ] }, "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'" } |