Material Icons for GitHub
Replace the file/folder icons on the GitHub file browser with icons representing the file's type and which tool it is used by.
Material Icons for GitHubคืออะไร?
Material Icons for GitHub เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Claudio Santos และคุณลักษณะหลักของมันคือ "Replace the file/folder icons on the GitHub file browser with icons representing the file's type and which tool it is used by."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Material Icons for GitHub
ดาวน์โหลดไฟล์ส่วนขยาย Material Icons for GitHub ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Replace GitHub's default icons with icons from Visual Studio Code's Material Icon Theme icons. Use the same icons on your code editor and on github.com, and quickly identify file types, configuration files and project scaffolding at a glance. This extension pull icons and replacement lists directly from the open source vscode extension https://github.com/PKief/vscode-material-icon-theme. This extension can replace icons on many other leading source control platforms. For bug reports, please open Issues on the extensions repository at https://github.com/Claudiohbsantos/github-material-icons-extension Don't forget to star the github repository if you like the extension.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Material Icons for GitHub |
ID | bggfcpfjbdkhfhfmkjpbhnkhnpjjeomc |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/material-icons-for-github/bggfcpfjbdkhfhfmkjpbhnkhnpjjeomc |
คำอธิบาย | Replace the file/folder icons on the GitHub file browser with icons representing the file's type and which tool it is used by. |
ขนาดไฟล์ | 700 KB |
จำนวนการติดตั้ง | 14,896 |
เวอร์ชันปัจจุบัน | 1.8.10 |
อัปเดตครั้งล่าสุด | 2024-02-20 |
วันที่เผยแพร่ | 2020-12-22 |
คะแนน | 5.00/5 รวมทั้งหมด 52 คะแนน |
ผู้พัฒนา | Claudio Santos |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/Claudiohbsantos/github-material-icons-extension |
URL หน้าช่วยเหลือ | https://github.com/Claudiohbsantos/github-material-icons-extension/issues |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Material Icons for GitHub", "version": "1.8.10", "description": "Replace the file\/folder icons on the GitHub file browser with icons representing the file's type and which tool it is used by.", "homepage_url": "https:\/\/github.com\/Claudiohbsantos\/github-material-icons-extension", "icons": { "16": "icon-16.png", "32": "icon-32.png", "48": "icon-48.png", "128": "icon-128.png" }, "content_scripts": [ { "matches": [ "*:\/\/github.com\/*", "*:\/\/bitbucket.org\/*", "*:\/\/dev.azure.com\/*", "*:\/\/*.visualstudio.com\/*", "*:\/\/gitea.com\/*", "*:\/\/gitlab.com\/*", "*:\/\/gitee.com\/*", "*:\/\/sourceforge.net\/*" ], "js": [ ".\/main.js" ], "css": [ ".\/injected-styles.css" ], "run_at": "document_start" } ], "options_ui": { "page": "options.html", "open_in_tab": true }, "permissions": [ "storage", "activeTab" ], "manifest_version": 3, "web_accessible_resources": [ { "resources": [ "*.svg" ], "matches": [ "*:\/\/github.com\/*", "*:\/\/bitbucket.org\/*", "*:\/\/dev.azure.com\/*", "*:\/\/*.visualstudio.com\/*", "*:\/\/gitea.com\/*", "*:\/\/gitlab.com\/*", "*:\/\/gitee.com\/*", "*:\/\/sourceforge.net\/*" ] } ], "action": { "default_title": "Material Icons Settings", "default_popup": "settings-popup.html", "default_icon": { "16": "icon-16.png", "32": "icon-32.png", "48": "icon-48.png", "128": "icon-128.png" } } } |