Github Expand Diff
A user script for Chrome that allows you to expand the missing lines in a Github diff.
Hvad er Github Expand Diff?
Github Expand Diff er en Chrome-udvidelse udviklet af Michael Ridgway, og dens hovedfunktion er "A user script for Chrome that allows you to expand the missing lines in a Github diff.".
Udvidelsesskærmbilleder
Download Github Expand Diff-udvidelses-CRX-fil
Download Github Expand Diff-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
Grundlæggende oplysninger om udvidelsen
| Navn | |
| ID | imakbajpbolcgnkfhhlhipbjppfomlij |
| Officiel URL | https://chromewebstore.google.com/detail/github-expand-diff/imakbajpbolcgnkfhhlhipbjppfomlij |
| Beskrivelse | A user script for Chrome that allows you to expand the missing lines in a Github diff. |
| Filstørrelse | 5.63 KB |
| Antal Installationer | 121 |
| Nuværende Version | 0.0.1.6 |
| Senest Opdateret | 2014-06-18 |
| Udgivelsesdato | 2014-06-18 |
| Bedømmelse | 3.86/5 Samlet 7 Bedømmelser |
| Udvikler | Michael Ridgway |
| Betalingsmetode | free |
| Udvidelseswebsted | https://github.com/mridgway/github-expand-diff |
| Hjælpeside-URL | https://github.com/mridgway/github-expand-diff/issues |
| Understøttede Sprog | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Github Expand Diff",
"version": "0.0.1.6",
"description": "A user script for Chrome that allows you to expand the missing lines in a Github diff.",
"manifest_version": 2,
"content_scripts": [
{
"matches": [
"https:\/\/*.com\/*\/*\/pull\/*",
"https:\/\/*.com\/*\/*\/commit\/*",
"https:\/\/*.com\/*\/*\/compare\/*"
],
"include_globs": [
"https:\/\/github.com\/*",
"https:\/\/github.*.com\/*",
"https:\/\/git.*.com\/*"
],
"run_at": "document_end",
"js": [
"github-expand-diff.user.js"
]
}
]
} | |