SVG link viewer
Show previews of all links to SVGs
什么是SVG link viewer?
SVG link viewer是由Unknown开发的Chrome扩展程序,该扩展的主要功能是“Show previews of all links to SVGs”。
扩展截图
下载SVG link viewer扩展crx文件
下载SVG link viewer扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Searches the DOM for links containing SVGs and displays a preview of that SVG below the link.
扩展基本信息
名称 | SVG link viewer |
ID | lnggninmgmlcfbancjjfiplammfeeihj |
官方URL | https://chromewebstore.google.com/detail/svg-link-viewer/lnggninmgmlcfbancjjfiplammfeeihj |
简介 | Show previews of all links to SVGs |
文件大小 | 34.06 KB |
安装次数 | 694 |
当前版本 | 2 |
更新时间 | 2015-10-26 |
上架时间 | 2015-10-26 |
评分 | 1.50/5 共6次评分 |
开发者 | Unknown |
付费类型 | free |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "SVG link viewer", "manifest_version": 2, "version": "2", "description": "Show previews of all links to SVGs", "background": { "scripts": [ "background.js" ], "persistent": false }, "browser_action": { "name": "Preview SVGs", "icons": [ "icon.png" ], "default_icon": "icon.png" }, "content_scripts": [ { "js": [ "jquery.min.js", "background.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ] } ] } |