Full Width Github
Always use full-width layout on Github. Great for reading and presenting code. This extension is not affiliated with Github.
O que é Full Width Github?
Full Width Github é uma extensão do Chrome desenvolvida por Jared Tong, e sua principal característica é "Always use full-width layout on Github. Great for reading and presenting code. This extension is not affiliated with Github.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Full Width Github
Baixe arquivos de extensão Full Width 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
Always use full-width layout on Github. Great for reading and presenting code. This extension is not affiliated with Github.
Informações Básicas da Extensão
Nome | Full Width Github |
ID | fpmeepocimocneobfkndponblfpecdkj |
URL Oficial | https://chromewebstore.google.com/detail/full-width-github/fpmeepocimocneobfkndponblfpecdkj |
Descrição | Always use full-width layout on Github. Great for reading and presenting code. This extension is not affiliated with Github. |
Tamanho do Arquivo | 316 KB |
Contagem de Instalações | 23 |
Versão Atual | 0.0.1 |
Última Atualização | 2017-03-04 |
Data de Publicação | 2017-03-04 |
Classificação | 5.00/5 Total de 2 Avaliações |
Desenvolvedor | Jared Tong |
Tipo de Pagamento | free |
URL da Página de Ajuda | https://github.com/tongrhj/full_width_github/issues |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Full Width Github", "version": "0.0.1", "description": "Always use full-width layout on Github. Great for reading and presenting code. This extension is not affiliated with Github.", "browser_action": { "default_icon": "github48.png", "default_title": "Wider Github" }, "icons": { "16": "github16.png", "48": "github48.png", "128": "github128.png" }, "content_scripts": [ { "js": [ "content.js" ], "matches": [ "https:\/\/github.com\/*", "https:\/\/*.github.com\/*" ] } ] } |