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`)
擴展基本資訊
名稱 | GitHub File Icons |
ID | kkokonbjllgdmblmbichgkkikhlcnekp |
官方網址 | 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 |
電子郵箱 | [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\/*" ] } |