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" ] } |