Wide GitHub
Change all GitHub repository and gist pages to be full width and dynamically sized.
Cos'è Wide GitHub?
Wide GitHub è un'estensione di Chrome sviluppata da xthexder, e la sua funzione principale è "Change all GitHub repository and gist pages to be full width and dynamically sized.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Wide GitHub
Scarica i file di estensione Wide GitHub in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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. Informazioni di Base sull'Estensione
| Nome | |
| ID | kaalofacklcidaampbokdplbklpeldpj |
| URL Ufficiale | https://chromewebstore.google.com/detail/wide-github/kaalofacklcidaampbokdplbklpeldpj |
| Descrizione | Change all GitHub repository and gist pages to be full width and dynamically sized. |
| Dimensione del File | 17.76 KB |
| Conteggio Installazioni | 7,602 |
| Versione Corrente | 1.6.5 MV3 |
| Ultimo Aggiornamento | 2024-02-07 |
| Data di Pubblicazione | 2020-06-26 |
| Valutazione | 4.55/5 Totale 66 Valutazioni |
| Sviluppatore | xthexder |
| [email protected] | |
| Tipo di Pagamento | free |
| Sito Web dell'Estensione | https://github.com/xthexder/wide-github |
| URL della Pagina di Aiuto | https://github.com/xthexder/wide-github/issues |
| Lingue Supportate | 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"
}
} | |