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 |
公式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'" } |