GitHub CSS Highlighter
Show web colors on GitHub files
Wat is GitHub CSS Highlighter?
GitHub CSS Highlighter is een Chrome-extensie ontwikkeld door Matt King, en de belangrijkste functie is "Show web colors on GitHub files".
Extensie Screenshots
Download het CRX-bestand van de extensie GitHub CSS Highlighter
Download GitHub CSS Highlighter-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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*
Basisinformatie over de Extensie
Naam | GitHub CSS Highlighter |
ID | eodknooanbabbanekpbcgaldepnenoih |
Officiële URL | https://chromewebstore.google.com/detail/github-css-highlighter/eodknooanbabbanekpbcgaldepnenoih |
Beschrijving | Show web colors on GitHub files |
Bestandsgrootte | 16.4 KB |
Aantal Installaties | 18 |
Huidige Versie | 1.0 |
Laatst Bijgewerkt | 2017-08-06 |
Publicatiedatum | 2017-08-06 |
Beoordeling | 5.00/5 Totaal 3 Beoordelingen |
Ontwikkelaar | Matt King |
Betalingswijze | free |
Ondersteunde Talen | 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\/*" ] } |