Side-by-side diff view in Github
Adds the option to view diffs side-by-side in Github
¿Qué es Side-by-side diff view in Github?
Side-by-side diff view in Github es una extensión de Chrome desarrollada por smike, y su función principal es "Adds the option to view diffs side-by-side in Github".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Side-by-side diff view in Github
Descarga archivos de extensión Side-by-side diff view in Github 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
This extension will transform the diff view on Github to a side-by-side view. Just load a commit page and click the "Show Side-By-Side Diffs" button. Things that work: - Switch between side-by-side and unified diffs - Previous comments are shown - New comments can be added to any line, but they look funky until you reload. Found a bug? Have a feature you'd like but isn't working? Please contribute at http://github.com/smike/diffhub.
Información Básica de la Extensión
Nombre | |
ID | ihmhmdmhllhleioijdeoocgoddjckbcd |
URL Oficial | https://chromewebstore.google.com/detail/side-by-side-diff-view-in/ihmhmdmhllhleioijdeoocgoddjckbcd |
Descripción | Adds the option to view diffs side-by-side in Github |
Tamaño del Archivo | 51.96 KB |
Cantidad de Instalaciones | 118 |
Versión Actual | 1.0.1 |
Última Actualización | 2013-03-26 |
Fecha de Publicación | 2013-03-26 |
Calificación | 2.40/5 Total de 10 Calificaciones |
Desarrollador | smike |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | http://github.com/smike/diffhub |
Idiomas Soportados | en |
manifest.json | |
{ "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Side-by-side diff view in Github", "version": "1.0.1", "description": "Adds the option to view diffs side-by-side in Github", "icons": { "128": "icon.png" }, "background": { "scripts": [ "secrets.js", "bg.js" ], "persistent": true }, "content_scripts": [ { "matches": [ "https:\/\/github.com\/*", "http:\/\/github.com\/*" ], "js": [ "lib\/jquery-1.9.1.min.js", "content.js" ], "css": [ "lib\/diffhub.css" ] } ], "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'" } |