Link Preview
Generates preview window of link that follows mouse when hovering specific elements
什么是Link Preview?
Link Preview是由dapoDev开发的Chrome扩展程序,该扩展的主要功能是“Generates preview window of link that follows mouse when hovering specific elements”。
扩展截图
下载Link Preview扩展crx文件
下载Link Preview扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
扩展基本信息
名称 | |
ID | bjoabjghhaegfioipdfaggpecmegfelp |
官方URL | https://chrome.google.com/webstore/detail/link-preview/bjoabjghhaegfioipdfaggpecmegfelp |
简介 | Generates preview window of link that follows mouse when hovering specific elements |
文件大小 | 39.05 KB |
安装次数 | 230 |
当前版本 | 1.3 |
更新时间 | 2017-12-15 |
上架时间 | 2017-12-15 |
评分 | 1.00/5 共2次评分 |
开发者 | dapoDev |
付费类型 | free |
扩展官网 | https://github.com/emdap/LinkPreview |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Link Preview", "description": "Generates preview window of link that follows mouse when hovering specific elements", "version": "1.3", "background": { "scripts": [ "thirdparty\/jquery.min.js" ] }, "permissions": [ "tabs", "http:\/\/*\/*", "https:\/\/*\/*", "file:\/\/\/*\/*" ], "content_scripts": [ { "matches": [ "http:\/\/www.kijiji.ca\/b*", "https:\/\/www.kijiji.ca\/b*" ], "js": [ "thirdparty\/jquery.min.js", "webSpecific\/kijiji.js", "webSpecific\/createFields.js", "previewWindow.js", "bindings.js", "main.js" ], "css": [ "tailDiv.css" ], "run_at": "document_start" } ] } |