GitHub File Icons

Display file icons on GitHub

GitHub File Icons क्या है?

GitHub File Icons lvarayut द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Display file icons on GitHub"।

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

screenshot
screenshot

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

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

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

                        ## Highlights

- Beautiful file icons ported from [Atom](https://github.com/file-icons/atom)
- Perfect combination with [Octotree](https://github.com/buunguyen/octotree) extension
- Support Github Enterprise (Access your Github Enterprise, right click on the extension icon, and choose `Enable Github Enterprise`)
- Support both color and dark icons (Right click on the extension icon, and choose `Change icons color`)                    

एक्सटेंशन की मूल जानकारी

नाम GitHub File Icons GitHub File Icons
ID kkokonbjllgdmblmbichgkkikhlcnekp
आधिकारिक URL https://chromewebstore.google.com/detail/github-file-icons/kkokonbjllgdmblmbichgkkikhlcnekp
विवरण Display file icons on GitHub
फ़ाइल का आकार 435 KB
स्थापना संख्या 4,000
वर्तमान संस्करण 1.2.6
अंतिम अपडेट 2020-08-26
प्रकाशन तिथि 2020-06-25
रेटिंग 5.00/5 कुल 7 रेटिंग्स
डेवलपर lvarayut
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/lvarayut/github-file-icons
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "GitHub File Icons",
    "version": "1.2.6",
    "manifest_version": 2,
    "description": "Display file icons on GitHub",
    "homepage_url": "https:\/\/github.com\/lvarayut\/github-file-icons",
    "icons": {
        "128": "icons\/icon.png"
    },
    "browser_action": {
        "default_icon": "icons\/icon-browser.png"
    },
    "author": "Varayut Lerdkanlayanawat",
    "permissions": [
        "contextMenus",
        "activeTab",
        "storage",
        "http:\/\/github.com\/*",
        "https:\/\/github.com\/*"
    ],
    "optional_permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "background": {
        "scripts": [
            "bg.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/github.com\/*",
                "https:\/\/github.com\/*"
            ],
            "css": [
                "vendors\/file-icons-js\/css\/style.css",
                "content.css"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "vendors\/file-icons-js\/fonts\/*"
    ]
}