github-vscode-icons-updated
[UPDATED] This extension shows a VS Code icons in GitHub Repositories
github-vscode-icons-updatedคืออะไร?
github-vscode-icons-updated เป็นส่วนขยายของ Chrome ที่พัฒนาโดย zardoy และคุณลักษณะหลักของมันคือ "[UPDATED] This extension shows a VS Code icons in GitHub Repositories"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย github-vscode-icons-updated
ดาวน์โหลดไฟล์ส่วนขยาย github-vscode-icons-updated ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This is an updated extension that shows a VS Code icons in GitHub Repositories Displays vscode-icons in GitHub repo with new UI, nearly 1200 file/folder icons Additional support for bitbucket, gitlab, sourceforge and more
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | github-vscode-icons-updated |
ID | amefmmaoenlhckgaoppgnmhlcolehkho |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/github-vscode-icons-updat/amefmmaoenlhckgaoppgnmhlcolehkho |
คำอธิบาย | [UPDATED] This extension shows a VS Code icons in GitHub Repositories |
ขนาดไฟล์ | 2.16 MB |
จำนวนการติดตั้ง | 82 |
เวอร์ชันปัจจุบัน | 2.0.2 |
อัปเดตครั้งล่าสุด | 2023-10-24 |
วันที่เผยแพร่ | 2023-02-21 |
คะแนน | 4.75/5 รวมทั้งหมด 4 คะแนน |
ผู้พัฒนา | zardoy |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/zardoy/github-vscode-icons |
URL หน้าช่วยเหลือ | https://github.com/zardoy/github-vscode-icons/issues |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "github-vscode-icons-updated", "description": "[UPDATED] This extension shows a VS Code icons in GitHub Repositories", "version": "2.0.2", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "offline_enabled": true, "action": { "default_icon": { "48": "icon48.png", "128": "icon128.png" } }, "background": { "service_worker": "background.js" }, "web_accessible_resources": [ { "resources": [ "icons\/*.svg", "images\/*.gif" ], "matches": [ "*:\/\/bitbucket.org\/*", "*:\/\/github.com\/*", "*:\/\/gist.github.com\/*", "*:\/\/gitlab.com\/*", "*:\/\/pastebin.com\/*", "*:\/\/sourceforge.net\/*" ] } ], "content_scripts": [ { "css": [ "content.css" ], "matches": [ "*:\/\/bitbucket.org\/*", "*:\/\/github.com\/*", "*:\/\/gist.github.com\/*", "*:\/\/gitlab.com\/*", "*:\/\/pastebin.com\/*", "*:\/\/sourceforge.net\/*" ], "js": [ "content.js" ], "run_at": "document_idle" } ], "permissions": [ "storage" ] } |