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
电子邮箱 [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"
    ]
}