Wide GitHub
Change all GitHub repository and gist pages to be full width and dynamically sized.
O que é Wide GitHub?
Wide GitHub é uma extensão do Chrome desenvolvida por xthexder, e sua principal característica é "Change all GitHub repository and gist pages to be full width and dynamically sized.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Wide GitHub
Baixe arquivos de extensão Wide GitHub no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | Wide GitHub |
ID | kaalofacklcidaampbokdplbklpeldpj |
URL Oficial | https://chromewebstore.google.com/detail/wide-github/kaalofacklcidaampbokdplbklpeldpj |
Descrição | Change all GitHub repository and gist pages to be full width and dynamically sized. |
Tamanho do Arquivo | 17.76 KB |
Contagem de Instalações | 7,602 |
Versão Atual | 1.6.5 MV3 |
Última Atualização | 2024-02-07 |
Data de Publicação | 2020-06-26 |
Classificação | 4.55/5 Total de 66 Avaliações |
Desenvolvedor | xthexder |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/xthexder/wide-github |
URL da Página de Ajuda | https://github.com/xthexder/wide-github/issues |
Idiomas Suportados | 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" } } |