github-vscode-icons-updated
[UPDATED] This extension shows a VS Code icons in GitHub Repositories
What is github-vscode-icons-updated?
github-vscode-icons-updated is a Chrome extension developed by zardoy, and its main feature is "[UPDATED] This extension shows a VS Code icons in GitHub Repositories".
Extension Screenshots
Download github-vscode-icons-updated Extension CRX File
Download github-vscode-icons-updated extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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
Extension Basic Information
Name | github-vscode-icons-updated |
ID | amefmmaoenlhckgaoppgnmhlcolehkho |
Official URL | https://chromewebstore.google.com/detail/github-vscode-icons-updat/amefmmaoenlhckgaoppgnmhlcolehkho |
Description | [UPDATED] This extension shows a VS Code icons in GitHub Repositories |
File Size | 2.16 MB |
Installation Count | 82 |
Current Version | 2.0.2 |
Last Updated | 2023-10-24 |
Publish Date | 2023-02-21 |
Rating | 4.75/5 Total 4 Ratings |
Developer | zardoy |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/zardoy/github-vscode-icons |
Help Page URL | https://github.com/zardoy/github-vscode-icons/issues |
Supported Languages | 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" ] } |