github-vscode-icons-updated
[UPDATED] This extension shows a VS Code icons in GitHub Repositories
github-vscode-icons-updated là gì?
github-vscode-icons-updated là một tiện ích mở rộng Chrome được phát triển bởi zardoy, và tính năng chính của nó là "[UPDATED] This extension shows a VS Code icons in GitHub Repositories".
Ả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-vscode-icons-updated
Tải xuống các tệp mở rộng github-vscode-icons-updated 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
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | github-vscode-icons-updated |
ID | amefmmaoenlhckgaoppgnmhlcolehkho |
URL Chính Thức | https://chromewebstore.google.com/detail/github-vscode-icons-updat/amefmmaoenlhckgaoppgnmhlcolehkho |
Mô tả | [UPDATED] This extension shows a VS Code icons in GitHub Repositories |
Kích Thước Tệp | 2.16 MB |
Số Lần Cài Đặt | 82 |
Phiên Bản Hiện Tại | 2.0.2 |
Cập Nhật Lần Cuối | 2023-10-24 |
Ngày Phát Hành | 2023-02-21 |
Đánh Giá | 4.75/5 Tổng số 4 Đánh Giá |
Nhà Phát Triển | zardoy |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/zardoy/github-vscode-icons |
URL Trang Trợ Giúp | https://github.com/zardoy/github-vscode-icons/issues |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } |