Dashboard filter for GitHub
This adds an activity filter menu to GitHub dashboard.
Что такое Dashboard filter for GitHub?
Dashboard filter for GitHub - это расширение Chrome, разработанное Mu-An Chiou, и его основная функция - "This adds an activity filter menu to GitHub dashboard.".
Снимки экрана расширения
Скачать файл CRX расширения Dashboard filter for GitHub
Скачайте файлы расширений Dashboard filter for GitHub в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
This adds an activity filter menu to GitHub.com dashboard page so user can choose to see only the activities they care about.
Основная информация о расширении
Название | Dashboard filter for GitHub |
ID | pcnaddhmngnnpookfhhamkelhhakimdg |
Официальный URL | https://chromewebstore.google.com/detail/dashboard-filter-for-gith/pcnaddhmngnnpookfhhamkelhhakimdg |
Описание | This adds an activity filter menu to GitHub dashboard. |
Размер файла | 6.87 KB |
Количество установок | 575 |
Текущая Версия | 0.8.8 |
Последнее Обновление | 2022-12-13 |
Дата публикации | 2019-05-12 |
Рейтинг | 4.50/5 Всего 6 оценок |
Разработчик | Mu-An Chiou |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://github.com/muan/github-dashboard |
URL страницы помощи | https://github.com/muan/github-dashboard/issues |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Dashboard filter for GitHub", "short_name": "dashboard", "version": "0.8.8", "manifest_version": 3, "description": "This adds an activity filter menu to GitHub dashboard.", "homepage_url": "http:\/\/github.com\/muan\/dashboard", "content_security_policy": { "extension_pages": "script-src 'self'; object-src 'self'" }, "content_scripts": [ { "matches": [ "https:\/\/github.com\/", "https:\/\/github.com\/orgs\/*\/dashboard" ], "css": [ "dashboard.css" ], "js": [ "dashboard.js" ] } ], "host_permissions": [ "https:\/\/api.github.com\/*" ] } |