Widescreen for GitHub
Toggle the width of GitHub with a click
O que é Widescreen for GitHub?
Widescreen for GitHub é uma extensão do Chrome desenvolvida por Søren Louv-Jansen, e sua principal característica é "Toggle the width of GitHub with a click".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Widescreen for GitHub
Baixe arquivos de extensão Widescreen for 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
Often the lines of code on Github are too long to fit within the fixed 920px width. This extension will take full advantage of your screen and show the code in 100% width! It works for all content on Github: PRs, commits, Gists, etc. It is easy to toggle the width on/off whenever you need it - it even comes with a nice transition. Bugs: https://github.com/sqren/github-widescreen/issues Fork: https://github.com/sqren/github-widescreen
Informações Básicas da Extensão
Nome | Widescreen for GitHub |
ID | elikdceclccjilahimjfceoalhdbndan |
URL Oficial | https://chromewebstore.google.com/detail/widescreen-for-github/elikdceclccjilahimjfceoalhdbndan |
Descrição | Toggle the width of GitHub with a click |
Tamanho do Arquivo | 1.94 MB |
Contagem de Instalações | 2,604 |
Versão Atual | 0.7.5 |
Última Atualização | 2020-11-10 |
Data de Publicação | 2020-07-02 |
Classificação | 4.21/5 Total de 24 Avaliações |
Desenvolvedor | Søren Louv-Jansen |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/sqren/github-widescreen |
URL da Página de Ajuda | https://github.com/sqren/github-widescreen |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Widescreen for GitHub", "short_name": "Widescreen for Github", "description": "Toggle the width of GitHub with a click", "version": "0.7.5", "icons": { "16": "images\/icon-16.png", "48": "images\/icon-48.png", "128": "images\/icon-128.png" }, "permissions": [ "https:\/\/github.com\/*", "storage" ], "browser_action": { "default_icon": { "19": "images\/icon-19.png", "38": "images\/icon-38.png" } }, "background": { "scripts": [ "background-scripts.js" ] }, "content_scripts": [ { "run_at": "document_end", "matches": [ "https:\/\/*.github.com\/*" ], "js": [ "content-scripts.js" ], "css": [ "content-styles.css" ] } ] } |