GitHub Feed Filter

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

O que é GitHub Feed Filter?

GitHub Feed Filter é uma extensão do Chrome desenvolvida por Vijay Dev, e sua principal característica é "Enables filtering out GitHub feeds by projects, commits, comments and issues".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão GitHub Feed Filter

Baixe arquivos de extensão GitHub Feed Filter no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome GitHub Feed Filter GitHub Feed Filter
ID jcpkhafkpnaljjbgdgbehajihicjalkc
URL Oficial https://chromewebstore.google.com/detail/github-feed-filter/jcpkhafkpnaljjbgdgbehajihicjalkc
Descrição Enables filtering out GitHub feeds by projects, commits, comments and issues
Tamanho do Arquivo 54.09 KB
Contagem de Instalações 59
Versão Atual 1.9
Última Atualização 2015-05-10
Data de Publicação 2015-05-10
Classificação 4.70/5 Total de 10 Avaliações
Desenvolvedor Vijay Dev
Tipo de Pagamento free
URL da Página de Ajuda https://github.com/vijaydev/github-feed-filter
Idiomas Suportados 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"
            ]
        }
    ]
}