github-vscode-icons

This extension shows a VS Code icons in Github Repositories

github-vscode-iconsคืออะไร?

github-vscode-icons เป็นส่วนขยายของ Chrome ที่พัฒนาโดย daniel.derevjanik และคุณลักษณะหลักของมันคือ "This extension shows a VS Code icons in Github Repositories"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย github-vscode-icons

ดาวน์โหลดไฟล์ส่วนขยาย github-vscode-icons ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

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

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ github-vscode-icons github-vscode-icons
ID hoccpcefjcgnabbmojbfoflggkecmpgd
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/github-vscode-icons/hoccpcefjcgnabbmojbfoflggkecmpgd
คำอธิบาย This extension shows a VS Code icons in Github Repositories
ขนาดไฟล์ 1.71 MB
จำนวนการติดตั้ง 2,422
เวอร์ชันปัจจุบัน 1.24
อัปเดตครั้งล่าสุด 2021-09-30
วันที่เผยแพร่ 2020-07-02
คะแนน 4.80/5 รวมทั้งหมด 15 คะแนน
ผู้พัฒนา daniel.derevjanik
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/dderevjanik/github-vscode-icons
URL หน้าช่วยเหลือ https://github.com/dderevjanik/github-vscode-icons
ภาษาที่รองรับ 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\/*"
    ]
}