github-vscode-icons

This extension shows a VS Code icons in Github Repositories

github-vscode-icons là gì?

github-vscode-icons là một tiện ích mở rộng Chrome được phát triển bởi daniel.derevjanik, và tính năng chính của nó là "This extension shows a VS Code icons in Github Repositories".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng github-vscode-icons

Tải xuống các tệp mở rộng github-vscode-icons dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

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

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên github-vscode-icons github-vscode-icons
ID hoccpcefjcgnabbmojbfoflggkecmpgd
URL Chính Thức https://chromewebstore.google.com/detail/github-vscode-icons/hoccpcefjcgnabbmojbfoflggkecmpgd
Mô tả This extension shows a VS Code icons in Github Repositories
Kích Thước Tệp 1.71 MB
Số Lần Cài Đặt 2,422
Phiên Bản Hiện Tại 1.24
Cập Nhật Lần Cuối 2021-09-30
Ngày Phát Hành 2020-07-02
Đánh Giá 4.80/5 Tổng số 15 Đánh Giá
Nhà Phát Triển daniel.derevjanik
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/dderevjanik/github-vscode-icons
URL Trang Trợ Giúp https://github.com/dderevjanik/github-vscode-icons
Ngôn Ngữ Được Hỗ Trợ 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\/*"
    ]
}