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\/*" ] } |