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 с друзьями, чтобы легко установить расширения 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`) Основная информация о расширении
| Название | |
| 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\/*"
]
} | |