GitHub Inline SVG
Shows an inline preview of SVG files on GitHub
¿Qué es GitHub Inline SVG?
GitHub Inline SVG es una extensión de Chrome desarrollada por Zach Bruggeman, y su función principal es "Shows an inline preview of SVG files on GitHub".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión GitHub Inline SVG
Descarga archivos de extensión GitHub Inline SVG en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
Shows an inline preview of SVG files on GitHub. You can toggle between viewing the image, or the SVG code. Nifty!
Información Básica de la Extensión
Nombre | GitHub Inline SVG |
ID | jbfbnojdibndlopjgadibhcphchdbfkh |
URL Oficial | https://chromewebstore.google.com/detail/github-inline-svg/jbfbnojdibndlopjgadibhcphchdbfkh |
Descripción | Shows an inline preview of SVG files on GitHub |
Tamaño del Archivo | 10.42 KB |
Cantidad de Instalaciones | 289 |
Versión Actual | 0.0.3 |
Última Actualización | 2014-08-26 |
Fecha de Publicación | 2014-08-26 |
Calificación | 5.00/5 Total de 3 Calificaciones |
Desarrollador | Zach Bruggeman |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | https://github.com/remixz/gh-inline-svg |
URL de la Página de Ayuda | https://github.com/remixz/gh-inline-svg/issues |
Idiomas Soportados | 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" } } |