github-vscode-icons

This extension shows a VS Code icons in Github Repositories

Wat is github-vscode-icons?

github-vscode-icons is een Chrome-extensie ontwikkeld door daniel.derevjanik, en de belangrijkste functie is "This extension shows a VS Code icons in Github Repositories".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie github-vscode-icons

Download github-vscode-icons-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

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

Basisinformatie over de Extensie

Naam github-vscode-icons github-vscode-icons
ID hoccpcefjcgnabbmojbfoflggkecmpgd
Officiële URL https://chromewebstore.google.com/detail/github-vscode-icons/hoccpcefjcgnabbmojbfoflggkecmpgd
Beschrijving This extension shows a VS Code icons in Github Repositories
Bestandsgrootte 1.71 MB
Aantal Installaties 2,422
Huidige Versie 1.24
Laatst Bijgewerkt 2021-09-30
Publicatiedatum 2020-07-02
Beoordeling 4.80/5 Totaal 15 Beoordelingen
Ontwikkelaar daniel.derevjanik
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/dderevjanik/github-vscode-icons
Help Pagina-URL https://github.com/dderevjanik/github-vscode-icons
Ondersteunde Talen 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\/*"
    ]
}