GitHub Inline SVG
Shows an inline preview of SVG files on GitHub
What is GitHub Inline SVG?
GitHub Inline SVG is a Chrome extension developed by Zach Bruggeman, and its main feature is "Shows an inline preview of SVG files on GitHub".
Extension Screenshots
Download GitHub Inline SVG Extension CRX File
Download GitHub Inline SVG 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
Shows an inline preview of SVG files on GitHub. You can toggle between viewing the image, or the SVG code. Nifty!
Extension Basic Information
Name | GitHub Inline SVG |
ID | jbfbnojdibndlopjgadibhcphchdbfkh |
Official URL | https://chromewebstore.google.com/detail/github-inline-svg/jbfbnojdibndlopjgadibhcphchdbfkh |
Description | Shows an inline preview of SVG files on GitHub |
File Size | 10.42 KB |
Installation Count | 289 |
Current Version | 0.0.3 |
Last Updated | 2014-08-26 |
Publish Date | 2014-08-26 |
Rating | 5.00/5 Total 3 Ratings |
Developer | Zach Bruggeman |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/remixz/gh-inline-svg |
Help Page URL | https://github.com/remixz/gh-inline-svg/issues |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "GitHub Inline SVG", "description": "Shows an inline preview of SVG files on GitHub", "version": "0.0.3", "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/github.com\/*" ], "js": [ "index.js" ] } ], "permissions": [ "https:\/\/github.com\/*" ], "icons": { "48": "icon_48.png", "128": "icon_128.png" } } |