Wide GitHub

Change all GitHub repository and gist pages to be full width and dynamically sized.

Co to jest Wide GitHub?

Wide GitHub to rozszerzenie Chrome opracowane przez xthexder, a jego główną funkcją jest „Change all GitHub repository and gist pages to be full width and dynamically sized.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Wide GitHub

Pobierz pliki rozszerzeń Wide GitHub 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

                        Features:
 - Read long lines of code without scrolling left to right
 - See more documentation at once when using large / high-dpi monitors
 - Easily toggleable for viewing size-dependent docs or wiki pages.                    

Podstawowe informacje o rozszerzeniu

Nazwa Wide GitHub Wide GitHub
ID kaalofacklcidaampbokdplbklpeldpj
Oficjalny URL https://chromewebstore.google.com/detail/wide-github/kaalofacklcidaampbokdplbklpeldpj
Opis Change all GitHub repository and gist pages to be full width and dynamically sized.
Rozmiar pliku 17.76 KB
Liczba instalacji 7,602
Aktualna Wersja 1.6.5 MV3
Ostatnia Aktualizacja 2024-02-07
Data Publikacji 2020-06-26
Ocena 4.55/5 Łącznie 66 Oceny
Deweloper xthexder
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/xthexder/wide-github
Adres URL Strony Pomocy https://github.com/xthexder/wide-github/issues
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Wide GitHub",
    "description": "Change all GitHub repository and gist pages to be full width and dynamically sized.",
    "version": "1.6.5",
    "version_name": "1.6.5 MV3",
    "icons": {
        "32": "icons\/icon32.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "action": {
        "default_icon": "icons\/icon.png",
        "default_title": "Toggle Wide GitHub"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*",
                "https:\/\/gist.github.com\/*"
            ],
            "css": [
                "wide-github.css"
            ],
            "js": [
                "wide-github-toggle.js"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    }
}