GitHub CSS Highlighter
Show web colors on GitHub files
What is GitHub CSS Highlighter?
GitHub CSS Highlighter is a Chrome extension developed by Matt King, and its main feature is "Show web colors on GitHub files".
Extension Screenshots
Download GitHub CSS Highlighter Extension CRX File
Download GitHub CSS Highlighter extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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*
Extension Basic Information
Name | GitHub CSS Highlighter |
ID | eodknooanbabbanekpbcgaldepnenoih |
Official URL | https://chromewebstore.google.com/detail/github-css-highlighter/eodknooanbabbanekpbcgaldepnenoih |
Description | Show web colors on GitHub files |
File Size | 16.4 KB |
Installation Count | 18 |
Current Version | 1.0 |
Last Updated | 2017-08-06 |
Publish Date | 2017-08-06 |
Rating | 5.00/5 Total 3 Ratings |
Developer | Matt King |
Payment Type | free |
Supported Languages | 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\/*" ] } |