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文件
下載Link Icon擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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 |
官方網址 | 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" } |