github-vscode-icons-updated

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

github-vscode-icons-updated क्या है?

github-vscode-icons-updated zardoy द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "[UPDATED] This extension shows a VS Code icons in GitHub Repositories"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में github-vscode-icons-updated एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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"
    ]
}