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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
عنوان صفحة المساعدة 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\/*"
    ]
}