Git Diff Flex
Git Diff Flex adds a draggable pane bezel between two files when comparing diffs! Currently only for github.com.
Was ist Git Diff Flex?
Git Diff Flex ist eine Chrome-Erweiterung, die von pbarnum entwickelt wurde, und ihr Hauptmerkmal ist "Git Diff Flex adds a draggable pane bezel between two files when comparing diffs! Currently only for github.com.".
Erweiterungsscreenshots
Git Diff Flex-Erweiterungs-CRX-Datei herunterladen
Laden Sie Git Diff Flex-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
This extension adds a pane bezel between a file's diff to expand or contract a side in an effort to make line more readable. Grundlegende Informationen zur Erweiterung
| Name | |
| ID | deholaolbodagbifbcaghhmjlbekndec |
| Offizielle URL | https://chromewebstore.google.com/detail/git-diff-flex/deholaolbodagbifbcaghhmjlbekndec |
| Beschreibung | Git Diff Flex adds a draggable pane bezel between two files when comparing diffs! Currently only for github.com. |
| Dateigröße | 17.52 KB |
| Installationsanzahl | 53 |
| Aktuelle Version | 1.0.5 |
| Letztes Update | 2023-06-28 |
| Veröffentlichungsdatum | 2018-08-30 |
| Bewertung | 5.00/5 Insgesamt 1 Bewertungen |
| Entwickler | pbarnum |
| [email protected] | |
| Zahlungsart | free |
| Hilfeseite URL | https://github.com/pbarnum/git-diff-flex/issues |
| Unterstützte Sprachen | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Git Diff Flex",
"version": "1.0.5",
"description": "Git Diff Flex adds a draggable pane bezel between two files when comparing diffs! Currently only for github.com.",
"permissions": [
"declarativeContent",
"storage"
],
"background": {
"service_scripts": [
"background.js"
]
},
"content_scripts": [
{
"matches": [
"*:\/\/*.github.com\/*"
],
"css": [
"git-diff-flex.css"
],
"js": [
"git-diff-flex.js"
]
}
],
"icons": {
"128": "icon_128.png"
},
"action": {
"default_title": "Git Diff Flex",
"default_popup": "options.html"
},
"manifest_version": 3
} | |