SVG link viewer
Show previews of all links to SVGs
What is SVG link viewer?
SVG link viewer is a Chrome extension developed by Unknown, and its main feature is "Show previews of all links to SVGs".
Extension Screenshots
Download SVG link viewer Extension CRX File
Download SVG link viewer extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Searches the DOM for links containing SVGs and displays a preview of that SVG below the link.
Extension Basic Information
Name | SVG link viewer |
ID | lnggninmgmlcfbancjjfiplammfeeihj |
Official URL | https://chromewebstore.google.com/detail/svg-link-viewer/lnggninmgmlcfbancjjfiplammfeeihj |
Description | Show previews of all links to SVGs |
File Size | 34.06 KB |
Installation Count | 694 |
Current Version | 2 |
Last Updated | 2015-10-26 |
Publish Date | 2015-10-26 |
Rating | 1.50/5 Total 6 Ratings |
Developer | Unknown |
Payment Type | free |
Supported Languages | 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:\/\/*\/*" ] } ] } |