GitHub Feed Filter

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

GitHub Feed Filter란 무엇입니까?

GitHub Feed Filter은(는) Vijay Dev에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Enables filtering out GitHub feeds by projects, commits, comments and issues"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

GitHub Feed Filter 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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.                    

확장 프로그램 기본 정보

이름 GitHub Feed Filter GitHub Feed Filter
ID jcpkhafkpnaljjbgdgbehajihicjalkc
공식 URL https://chromewebstore.google.com/detail/github-feed-filter/jcpkhafkpnaljjbgdgbehajihicjalkc
설명 Enables filtering out GitHub feeds by projects, commits, comments and issues
파일 크기 54.09 KB
설치 횟수 59
현재 버전 1.9
최근 업데이트 2015-05-10
출시 날짜 2015-05-10
평점 4.70/5 총 10 개의 평점
개발자 Vijay Dev
결제 유형 free
도움말 페이지 URL https://github.com/vijaydev/github-feed-filter
지원되는 언어 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"
            ]
        }
    ]
}