GitHub Feed Filter

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

What is GitHub Feed Filter?

GitHub Feed Filter is a Chrome extension developed by Vijay Dev, and its main feature is "Enables filtering out GitHub feeds by projects, commits, comments and issues".

Extension Screenshots

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

Download GitHub Feed Filter Extension CRX File

Download GitHub Feed Filter extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name GitHub Feed Filter GitHub Feed Filter
ID jcpkhafkpnaljjbgdgbehajihicjalkc
Official URL https://chromewebstore.google.com/detail/github-feed-filter/jcpkhafkpnaljjbgdgbehajihicjalkc
Description Enables filtering out GitHub feeds by projects, commits, comments and issues
File Size 54.09 KB
Installation Count 59
Current Version 1.9
Last Updated 2015-05-10
Publish Date 2015-05-10
Rating 4.70/5 Total 10 Ratings
Developer Vijay Dev
Payment Type free
Help Page URL https://github.com/vijaydev/github-feed-filter
Supported Languages 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"
            ]
        }
    ]
}