github-vscode-icons-updated

[UPDATED] This extension shows a VS Code icons in GitHub Repositories

github-vscode-icons-updatedとは何ですか?

github-vscode-icons-updatedはzardoyによって開発されたChromeの拡張機能で、その主な機能は「[UPDATED] This extension shows a VS Code icons in GitHub Repositories」です。

拡張機能のスクリーンショット

screenshot

github-vscode-icons-updated拡張機能のCRXファイルをダウンロード

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
Eメール [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"
    ]
}