GitHub File Icons
Display file icons on GitHub
Wat is GitHub File Icons?
GitHub File Icons is een Chrome-extensie ontwikkeld door lvarayut, en de belangrijkste functie is "Display file icons on GitHub".
Extensie Screenshots
Download het CRX-bestand van de extensie GitHub File Icons
Download GitHub File Icons-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
## 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`) Basisinformatie over de Extensie
| Naam | |
| ID | kkokonbjllgdmblmbichgkkikhlcnekp |
| Officiële URL | https://chromewebstore.google.com/detail/github-file-icons/kkokonbjllgdmblmbichgkkikhlcnekp |
| Beschrijving | Display file icons on GitHub |
| Bestandsgrootte | 435 KB |
| Aantal Installaties | 4,000 |
| Huidige Versie | 1.2.6 |
| Laatst Bijgewerkt | 2020-08-26 |
| Publicatiedatum | 2020-06-25 |
| Beoordeling | 5.00/5 Totaal 7 Beoordelingen |
| Ontwikkelaar | lvarayut |
| [email protected] | |
| Betalingswijze | free |
| Extensiewebsite | https://github.com/lvarayut/github-file-icons |
| Ondersteunde Talen | 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\/*"
]
} | |