GitHub Dark Theme
A Dark theme for all of GitHub based on Atom One Dark.
O que é GitHub Dark Theme?
GitHub Dark Theme é uma extensão do Chrome desenvolvida por LP Luxtra, e sua principal característica é "A Dark theme for all of GitHub based on Atom One Dark.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão GitHub Dark Theme
Baixe arquivos de extensão GitHub Dark Theme 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
# About this extension. This package will alternate appearance of all GitHub pages to dark theme with original GitHub themes. GitHub Dark Theme extension doesn't collect/share/care about your data at all. Notice: dark theme applying for GitHub pages. # Privacy Policy. ## Personal data. GitHub Dark Theme had never collected and will never collect any personal data, browsing history etc. In future GitHub Dark Theme may collect browser version, platform name, display settings and user's filter settings (except website list or any other data which can help identify user). This information is needed for decision on implementing new features, removing unused features or suggesting default settings for new users. It will happen only with your permission.
Informações Básicas da Extensão
Nome | GitHub Dark Theme |
ID | odkdlljoangmamjilkamahebpkgpeacp |
URL Oficial | https://chromewebstore.google.com/detail/github-dark-theme/odkdlljoangmamjilkamahebpkgpeacp |
Descrição | A Dark theme for all of GitHub based on Atom One Dark. |
Tamanho do Arquivo | 246 KB |
Contagem de Instalações | 24,662 |
Versão Atual | 1.2.2 |
Última Atualização | 2023-06-13 |
Data de Publicação | 2020-06-24 |
Classificação | 4.70/5 Total de 172 Avaliações |
Desenvolvedor | LP Luxtra |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://poychang.github.io/github-dark-theme/ |
URL da Página de Ajuda | https://github.com/poychang/github-dark-theme/issues |
Idiomas Suportados | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "GitHub Dark Theme", "short_name": "GitHub Dark Theme", "description": "A Dark theme for all of GitHub based on Atom One Dark.", "version": "1.2.2", "icons": { "16": "logo\/icon16.png", "48": "logo\/icon48.png", "128": "logo\/icon128.png" }, "options_page": "settings\/settings.html", "action": [], "permissions": [ "scripting", "tabs" ], "host_permissions": [ "https:\/\/github.com\/*" ], "background": { "service_worker": "service-worker.js" }, "content_scripts": [ { "js": [ "foreground.js" ], "matches": [ "https:\/\/github.com\/*" ] } ] } |