GitHub Feed Filter

Enables filtering out GitHub feeds by projects, commits, comments and issues

Co to jest GitHub Feed Filter?

GitHub Feed Filter to rozszerzenie Chrome opracowane przez Vijay Dev, a jego główną funkcją jest „Enables filtering out GitHub feeds by projects, commits, comments and issues”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia GitHub Feed Filter

Pobierz pliki rozszerzeń GitHub Feed Filter 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

                        GitHub Feed Filter reads through the visible feeds in the GitHub News Feed section and lists them in the page just like Your Repos or Watched Repos. 

Clicking on a repository will filter out your News Feed to only include feeds from that repository. This filtering can be further extended to show only the feeds for Commits, Comments or Issues made in that repository.

It also saves your current search term and currently selected category when you fetch 'More' items to the feed.                    

Podstawowe informacje o rozszerzeniu

Nazwa GitHub Feed Filter GitHub Feed Filter
ID jcpkhafkpnaljjbgdgbehajihicjalkc
Oficjalny URL https://chromewebstore.google.com/detail/github-feed-filter/jcpkhafkpnaljjbgdgbehajihicjalkc
Opis Enables filtering out GitHub feeds by projects, commits, comments and issues
Rozmiar pliku 54.09 KB
Liczba instalacji 59
Aktualna Wersja 1.9
Ostatnia Aktualizacja 2015-05-10
Data Publikacji 2015-05-10
Ocena 4.70/5 Łącznie 10 Oceny
Deweloper Vijay Dev
Typ Płatności free
Adres URL Strony Pomocy https://github.com/vijaydev/github-feed-filter
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "GitHub Feed Filter",
    "version": "1.9",
    "manifest_version": 2,
    "description": "Enables filtering out GitHub feeds by projects, commits, comments and issues",
    "icons": {
        "16": "ghf16.png",
        "48": "ghf48.png",
        "128": "ghf128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/",
                "https:\/\/github.com\/dashboard",
                "https:\/\/github.com\/#"
            ],
            "js": [
                "jquery-1.4.2.min.js",
                "filter.js"
            ]
        }
    ]
}