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".

Снимки экрана расширения

screenshot

Скачать файл 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 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"
    ]
}