GitHub File Icons
Display file icons on GitHub
ما هو GitHub File Icons؟
GitHub File Icons هو إضافة Chrome تم تطويرها بواسطة lvarayut، والميزة الرئيسية لها هي "Display file icons on GitHub".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة GitHub File Icons
قم بتنزيل ملفات الامتداد GitHub File Icons بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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 |
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\/*" ] } |