Wide GitHub
Change all GitHub repository and gist pages to be full width and dynamically sized.
Wat is Wide GitHub?
Wide GitHub is een Chrome-extensie ontwikkeld door xthexder, en de belangrijkste functie is "Change all GitHub repository and gist pages to be full width and dynamically sized.".
Extensie Screenshots
Download het CRX-bestand van de extensie Wide GitHub
Download Wide GitHub-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | Wide GitHub |
ID | kaalofacklcidaampbokdplbklpeldpj |
Officiële URL | https://chromewebstore.google.com/detail/wide-github/kaalofacklcidaampbokdplbklpeldpj |
Beschrijving | Change all GitHub repository and gist pages to be full width and dynamically sized. |
Bestandsgrootte | 17.76 KB |
Aantal Installaties | 7,602 |
Huidige Versie | 1.6.5 MV3 |
Laatst Bijgewerkt | 2024-02-07 |
Publicatiedatum | 2020-06-26 |
Beoordeling | 4.55/5 Totaal 66 Beoordelingen |
Ontwikkelaar | xthexder |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://github.com/xthexder/wide-github |
Help Pagina-URL | https://github.com/xthexder/wide-github/issues |
Ondersteunde Talen | 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" } } |