Dashboard filter for GitHub

This adds an activity filter menu to GitHub dashboard.

Co to jest Dashboard filter for GitHub?

Dashboard filter for GitHub to rozszerzenie Chrome opracowane przez Mu-An Chiou, a jego główną funkcją jest „This adds an activity filter menu to GitHub dashboard.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Dashboard filter for GitHub

Pobierz pliki rozszerzeń Dashboard filter for GitHub w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        This adds an activity filter menu to GitHub.com dashboard page so user can choose to see only the activities they care about.                    

Podstawowe informacje o rozszerzeniu

Nazwa Dashboard filter for GitHub Dashboard filter for GitHub
ID pcnaddhmngnnpookfhhamkelhhakimdg
Oficjalny URL https://chromewebstore.google.com/detail/dashboard-filter-for-gith/pcnaddhmngnnpookfhhamkelhhakimdg
Opis This adds an activity filter menu to GitHub dashboard.
Rozmiar pliku 6.87 KB
Liczba instalacji 575
Aktualna Wersja 0.8.8
Ostatnia Aktualizacja 2022-12-13
Data Publikacji 2019-05-12
Ocena 4.50/5 Łącznie 6 Oceny
Deweloper Mu-An Chiou
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/muan/github-dashboard
Adres URL Strony Pomocy https://github.com/muan/github-dashboard/issues
Obsługiwane Języki 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\/*"
    ]
}