Lazy Linker
Provides previews to external links, images, and videos in articles when a link is hover over.
什麼是Lazy Linker?
Lazy Linker是由orrybaram開發的Chrome擴展程式,該擴展的主要功能是“Provides previews to external links, images, and videos in articles when a link is hover over.”。
擴展截圖
下載Lazy Linker擴展crx文件
下載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 |
官方網址 | 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'" } |