Git Diff Flex
Git Diff Flex adds a draggable pane bezel between two files when comparing diffs! Currently only for github.com.
Co to jest Git Diff Flex?
Git Diff Flex to rozszerzenie Chrome opracowane przez pbarnum, a jego główną funkcją jest „Git Diff Flex adds a draggable pane bezel between two files when comparing diffs! Currently only for github.com.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Git Diff Flex
Pobierz pliki rozszerzeń Git Diff Flex w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
                        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.                     Podstawowe informacje o rozszerzeniu
| Nazwa |   |  
| ID | deholaolbodagbifbcaghhmjlbekndec | 
| Oficjalny URL | https://chromewebstore.google.com/detail/git-diff-flex/deholaolbodagbifbcaghhmjlbekndec | 
| Opis | Git Diff Flex adds a draggable pane bezel between two files when comparing diffs! Currently only for github.com. | 
| Rozmiar pliku | 17.52 KB | 
| Liczba instalacji | 53 | 
| Aktualna Wersja | 1.0.5 | 
| Ostatnia Aktualizacja | 2023-06-28 | 
| Data Publikacji | 2018-08-30 | 
| Ocena | 5.00/5 Łącznie 1 Oceny | 
| Deweloper | pbarnum | 
| [email protected] | |
| Typ Płatności | free | 
| Adres URL Strony Pomocy | https://github.com/pbarnum/git-diff-flex/issues | 
| Obsługiwane Języki | 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
}  |  |