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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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'" } |