Side-by-side diff view in Github
Adds the option to view diffs side-by-side in Github
Wat is Side-by-side diff view in Github?
Side-by-side diff view in Github is een Chrome-extensie ontwikkeld door smike, en de belangrijkste functie is "Adds the option to view diffs side-by-side in Github".
Extensie Screenshots
Download het CRX-bestand van de extensie Side-by-side diff view in Github
Download Side-by-side diff view in Github-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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. Basisinformatie over de Extensie
| Naam | |
| ID | ihmhmdmhllhleioijdeoocgoddjckbcd |
| Officiële URL | https://chromewebstore.google.com/detail/side-by-side-diff-view-in/ihmhmdmhllhleioijdeoocgoddjckbcd |
| Beschrijving | Adds the option to view diffs side-by-side in Github |
| Bestandsgrootte | 51.96 KB |
| Aantal Installaties | 118 |
| Huidige Versie | 1.0.1 |
| Laatst Bijgewerkt | 2013-03-26 |
| Publicatiedatum | 2013-03-26 |
| Beoordeling | 2.40/5 Totaal 10 Beoordelingen |
| Ontwikkelaar | smike |
| [email protected] | |
| Betalingswijze | free |
| Extensiewebsite | http://github.com/smike/diffhub |
| Ondersteunde Talen | 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'"
} | |