GitHub CSS Highlighter
Show web colors on GitHub files
Cos'è GitHub CSS Highlighter?
GitHub CSS Highlighter è un'estensione di Chrome sviluppata da Matt King, e la sua funzione principale è "Show web colors on GitHub files".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione GitHub CSS Highlighter
Scarica i file di estensione GitHub CSS Highlighter in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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*
Informazioni di Base sull'Estensione
Nome | GitHub CSS Highlighter |
ID | eodknooanbabbanekpbcgaldepnenoih |
URL Ufficiale | https://chromewebstore.google.com/detail/github-css-highlighter/eodknooanbabbanekpbcgaldepnenoih |
Descrizione | Show web colors on GitHub files |
Dimensione del File | 16.4 KB |
Conteggio Installazioni | 18 |
Versione Corrente | 1.0 |
Ultimo Aggiornamento | 2017-08-06 |
Data di Pubblicazione | 2017-08-06 |
Valutazione | 5.00/5 Totale 3 Valutazioni |
Sviluppatore | Matt King |
Tipo di Pagamento | free |
Lingue Supportate | 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\/*" ] } |