GitHub File Icons
Display file icons on GitHub
Was ist GitHub File Icons?
GitHub File Icons ist eine Chrome-Erweiterung, die von lvarayut entwickelt wurde, und ihr Hauptmerkmal ist "Display file icons on GitHub".
Erweiterungsscreenshots
GitHub File Icons-Erweiterungs-CRX-Datei herunterladen
Laden Sie GitHub File Icons-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
## 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`) Grundlegende Informationen zur Erweiterung
| Name | |
| ID | kkokonbjllgdmblmbichgkkikhlcnekp |
| Offizielle URL | https://chromewebstore.google.com/detail/github-file-icons/kkokonbjllgdmblmbichgkkikhlcnekp |
| Beschreibung | Display file icons on GitHub |
| Dateigröße | 435 KB |
| Installationsanzahl | 4,000 |
| Aktuelle Version | 1.2.6 |
| Letztes Update | 2020-08-26 |
| Veröffentlichungsdatum | 2020-06-25 |
| Bewertung | 5.00/5 Insgesamt 7 Bewertungen |
| Entwickler | lvarayut |
| [email protected] | |
| Zahlungsart | free |
| Erweiterungswebsite | https://github.com/lvarayut/github-file-icons |
| Unterstützte Sprachen | 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\/*"
]
} | |