Link Icon
Know where you're going to before clicking on a link.
Link Icon란 무엇입니까?
Link Icon은(는) pb_ee1에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Know where you're going to before clicking on a link."입니다.
확장 프로그램 스크린샷
Link Icon 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Displays an icon next to your cursor when hovering a link indicating what the target points to. Will it open a new window, trigger a JavaScript event, display a PDF file or download a program? You will know all of that without having to click on the link. This extension has an option page that let you select which icons should be displayed. Currently, it supports the indicators below: * Windows: New window/tab * Protocols: ftp://, mailto:, irc://, aim://, file://, magnet: * Scripts: javascript: links, onclick attribute * Hosts: Link to Gmail * File types: Applications, Music, Word Documents, Presentations, Images, Photoshop Images, Java Applets & files, Javascript, JSON, CSS, PDF, ePUB, Registry files, Torrents, Text files, Spreadsheets, Google Chrome Extensions, Archives, User scripts, Videos (including Quicktime, Real) * Security: Going to a secured webpage, Leaving a secured webpage * External: Leaving the website (has some limitations) (The extension can support more file types. If you want one added, please request it here.)
확장 프로그램 기본 정보
이름 | Link Icon |
ID | cnjfiolbpeihgijepincpfjhigekegab |
공식 URL | https://chromewebstore.google.com/detail/link-icon/cnjfiolbpeihgijepincpfjhigekegab |
설명 | Know where you're going to before clicking on a link. |
파일 크기 | 88.38 KB |
설치 횟수 | 641 |
현재 버전 | 4.2 |
최근 업데이트 | 2014-10-13 |
출시 날짜 | 2014-10-13 |
평점 | 4.63/5 총 40 개의 평점 |
개발자 | pb_ee1 |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Link Icon", "version": "4.2", "description": "Know where you're going to before clicking on a link.", "icons": { "16": "images\/extension\/16.png", "48": "images\/extension\/48.png", "128": "images\/extension\/128.png" }, "author": "pb_ee1", "background": { "scripts": [ "eventPage.js" ], "persistent": true }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "css": [ "opentip\/opentip.css", "opentip\/opentip-custom.css" ], "js": [ "jquery-2.1.1.min.js", "opentip\/opentip-jquery.min.js", "link_icon.js", "tld.js", "engine.js" ], "run_at": "document_start", "all_frames": false } ], "options_page": "options.html", "short_name": "Link Icon" } |