GitHub File Icons

Display file icons on GitHub

GitHub File Iconsคืออะไร?

GitHub File Icons เป็นส่วนขยายของ Chrome ที่พัฒนาโดย lvarayut และคุณลักษณะหลักของมันคือ "Display file icons on GitHub"

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

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย GitHub File Icons

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

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

                        ## 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\/*"
    ]
}