GitHub CSS Highlighter
Show web colors on GitHub files
什么是GitHub CSS Highlighter?
GitHub CSS Highlighter是由Matt King开发的Chrome扩展程序,该扩展的主要功能是“Show web colors on GitHub files”。
扩展截图
下载GitHub CSS Highlighter扩展crx文件
下载GitHub CSS Highlighter扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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*
扩展基本信息
名称 | GitHub CSS Highlighter |
ID | eodknooanbabbanekpbcgaldepnenoih |
官方URL | https://chromewebstore.google.com/detail/github-css-highlighter/eodknooanbabbanekpbcgaldepnenoih |
简介 | Show web colors on GitHub files |
文件大小 | 16.4 KB |
安装次数 | 18 |
当前版本 | 1.0 |
更新时间 | 2017-08-06 |
上架时间 | 2017-08-06 |
评分 | 5.00/5 共3次评分 |
开发者 | Matt King |
付费类型 | free |
支持的语言 | 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\/*" ] } |