GitHub CSS Highlighter
Show web colors on GitHub files
O que é GitHub CSS Highlighter?
GitHub CSS Highlighter é uma extensão do Chrome desenvolvida por Matt King, e sua principal característica é "Show web colors on GitHub files".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão GitHub CSS Highlighter
Baixe arquivos de extensão GitHub CSS Highlighter 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
GitHub CSS Highlighter adds the web color to GitHub code pages in any language. Now you can stop trying to figure out which color that hex code goes with or what that new color somebody added in a pull request looks like. Simply add the extension and start browsing code files: https://github.com/mrmrs/colors/blob/master/css/colors.css *Bitbucket and GCP support coming soon*
Informações Básicas da Extensão
Nome | GitHub CSS Highlighter |
ID | eodknooanbabbanekpbcgaldepnenoih |
URL Oficial | https://chromewebstore.google.com/detail/github-css-highlighter/eodknooanbabbanekpbcgaldepnenoih |
Descrição | Show web colors on GitHub files |
Tamanho do Arquivo | 16.4 KB |
Contagem de Instalações | 18 |
Versão Atual | 1.0 |
Última Atualização | 2017-08-06 |
Data de Publicação | 2017-08-06 |
Classificação | 5.00/5 Total de 3 Avaliações |
Desenvolvedor | Matt King |
Tipo de Pagamento | free |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "GitHub CSS Highlighter", "description": "Show web colors on GitHub files", "author": "Matthew King", "version": "1.0", "browser_action": { "default_icon": "icon.png" }, "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "content_scripts": [ { "matches": [ "https:\/\/github.com\/*" ], "js": [ "js\/vendor.js", "js\/content_script.js" ] } ], "background": { "scripts": [ "js\/vendor.js", "js\/background.js" ] }, "permissions": [ "storage", "https:\/\/github.com\/*" ] } |