GitHub File Icons
Display file icons on GitHub
GitHub File Icons là gì?
GitHub File Icons là một tiện ích mở rộng Chrome được phát triển bởi lvarayut, và tính năng chính của nó là "Display file icons on GitHub".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng GitHub File Icons
Tải xuống các tệp mở rộng GitHub File Icons dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
## 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`)
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | GitHub File Icons |
ID | kkokonbjllgdmblmbichgkkikhlcnekp |
URL Chính Thức | https://chromewebstore.google.com/detail/github-file-icons/kkokonbjllgdmblmbichgkkikhlcnekp |
Mô tả | Display file icons on GitHub |
Kích Thước Tệp | 435 KB |
Số Lần Cài Đặt | 4,000 |
Phiên Bản Hiện Tại | 1.2.6 |
Cập Nhật Lần Cuối | 2020-08-26 |
Ngày Phát Hành | 2020-06-25 |
Đánh Giá | 5.00/5 Tổng số 7 Đánh Giá |
Nhà Phát Triển | lvarayut |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/lvarayut/github-file-icons |
Ngôn Ngữ Được Hỗ Trợ | 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\/*" ] } |