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 |
官方網址 | 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\/*" ] } |