Wide GitHub

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

Vad är Wide GitHub?

Wide GitHub är en Chrome-tillägg utvecklad av xthexder, och dess huvudfunktion är "Change all GitHub repository and gist pages to be full width and dynamically sized.".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner Wide GitHub-förlängningens CRX-fil

Ladda ner Wide GitHub-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Wide GitHub Wide GitHub
ID kaalofacklcidaampbokdplbklpeldpj
Officiell webbadress https://chromewebstore.google.com/detail/wide-github/kaalofacklcidaampbokdplbklpeldpj
Beskrivning Change all GitHub repository and gist pages to be full width and dynamically sized.
Filstorlek 17.76 KB
Antal Installationer 7,602
Aktuell Version 1.6.5 MV3
Senast Uppdaterad 2024-02-07
Publiceringsdatum 2020-06-26
Betyg 4.55/5 Totalt 66 Betyg
Utvecklare xthexder
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/xthexder/wide-github
Hjälpsida URL https://github.com/xthexder/wide-github/issues
Stödda Språk 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"
    }
}