github-vscode-icons

This extension shows a VS Code icons in Github Repositories

Co to jest github-vscode-icons?

github-vscode-icons to rozszerzenie Chrome opracowane przez daniel.derevjanik, a jego główną funkcją jest „This extension shows a VS Code icons in Github Repositories”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia github-vscode-icons

Pobierz pliki rozszerzeń github-vscode-icons w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        Displays vscode-icons in github repo, nearly 1000 file/folder icons.                    

Podstawowe informacje o rozszerzeniu

Nazwa github-vscode-icons github-vscode-icons
ID hoccpcefjcgnabbmojbfoflggkecmpgd
Oficjalny URL https://chromewebstore.google.com/detail/github-vscode-icons/hoccpcefjcgnabbmojbfoflggkecmpgd
Opis This extension shows a VS Code icons in Github Repositories
Rozmiar pliku 1.71 MB
Liczba instalacji 2,422
Aktualna Wersja 1.24
Ostatnia Aktualizacja 2021-09-30
Data Publikacji 2020-07-02
Ocena 4.80/5 Łącznie 15 Oceny
Deweloper daniel.derevjanik
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/dderevjanik/github-vscode-icons
Adres URL Strony Pomocy https://github.com/dderevjanik/github-vscode-icons
Obsługiwane Języki en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "github-vscode-icons",
    "description": "This extension shows a VS Code icons in Github Repositories",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "version": "1.24",
    "author": "Daniel Derevjanik ",
    "offline_enabled": true,
    "browser_action": {
        "default_icon": {
            "48": "icon48.png",
            "128": "icon128.png"
        }
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "web_accessible_resources": [
        "icons\/*.svg",
        "images\/*.gif"
    ],
    "content_scripts": [
        {
            "css": [
                "content.css"
            ],
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "permissions": [
        "storage",
        "*:\/\/bitbucket.org\/*",
        "*:\/\/github.com\/*",
        "*:\/\/gist.github.com\/*",
        "*:\/\/gitlab.com\/*",
        "*:\/\/pastebin.com\/*",
        "*:\/\/sourceforge.net\/*"
    ]
}