GitHub File Icons
Display file icons on GitHub
GitHub File Iconsとは何ですか?
GitHub File Iconsはlvarayutによって開発されたChromeの拡張機能で、その主な機能は「Display file icons on GitHub」です。
拡張機能のスクリーンショット
GitHub File Icons拡張機能のCRXファイルをダウンロード
GitHub File Icons拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
## Highlights
- Beautiful file icons ported from [Atom](https://github.com/file-icons/atom)
- Perfect combination with [Octotree](https://github.com/buunguyen/octotree) extension
- Support Github Enterprise (Access your Github Enterprise, right click on the extension icon, and choose `Enable Github Enterprise`)
- Support both color and dark icons (Right click on the extension icon, and choose `Change icons color`) 拡張機能の基本情報
| 名前 | |
| ID | kkokonbjllgdmblmbichgkkikhlcnekp |
| 公式URL | https://chromewebstore.google.com/detail/github-file-icons/kkokonbjllgdmblmbichgkkikhlcnekp |
| 説明 | Display file icons on GitHub |
| ファイルサイズ | 435 KB |
| インストール数 | 4,000 |
| 現在のバージョン | 1.2.6 |
| 最終更新日 | 2020-08-26 |
| 公開日 | 2020-06-25 |
| 評価 | 5.00/5 合計 7 レビュー |
| 開発者 | lvarayut |
| Eメール | [email protected] |
| 支払い方法 | free |
| 拡張機能のウェブサイト | https://github.com/lvarayut/github-file-icons |
| 対応言語 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "GitHub File Icons",
"version": "1.2.6",
"manifest_version": 2,
"description": "Display file icons on GitHub",
"homepage_url": "https:\/\/github.com\/lvarayut\/github-file-icons",
"icons": {
"128": "icons\/icon.png"
},
"browser_action": {
"default_icon": "icons\/icon-browser.png"
},
"author": "Varayut Lerdkanlayanawat",
"permissions": [
"contextMenus",
"activeTab",
"storage",
"http:\/\/github.com\/*",
"https:\/\/github.com\/*"
],
"optional_permissions": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"background": {
"scripts": [
"bg.js"
]
},
"content_scripts": [
{
"matches": [
"http:\/\/github.com\/*",
"https:\/\/github.com\/*"
],
"css": [
"vendors\/file-icons-js\/css\/style.css",
"content.css"
],
"js": [
"content.js"
]
}
],
"web_accessible_resources": [
"vendors\/file-icons-js\/fonts\/*"
]
} | |