GitHub File Icons
Display file icons on GitHub
Cos'è GitHub File Icons?
GitHub File Icons è un'estensione di Chrome sviluppata da lvarayut, e la sua funzione principale è "Display file icons on GitHub".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione GitHub File Icons
Scarica i file di estensione GitHub File Icons in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
## 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`)
Informazioni di Base sull'Estensione
Nome | GitHub File Icons |
ID | kkokonbjllgdmblmbichgkkikhlcnekp |
URL Ufficiale | https://chromewebstore.google.com/detail/github-file-icons/kkokonbjllgdmblmbichgkkikhlcnekp |
Descrizione | Display file icons on GitHub |
Dimensione del File | 435 KB |
Conteggio Installazioni | 4,000 |
Versione Corrente | 1.2.6 |
Ultimo Aggiornamento | 2020-08-26 |
Data di Pubblicazione | 2020-06-25 |
Valutazione | 5.00/5 Totale 7 Valutazioni |
Sviluppatore | lvarayut |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/lvarayut/github-file-icons |
Lingue Supportate | 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\/*" ] } |