GitHub Feed Filter

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

GitHub Feed Filter là gì?

GitHub Feed Filter là một tiện ích mở rộng Chrome được phát triển bởi Vijay Dev, và tính năng chính của nó là "Enables filtering out GitHub feeds by projects, commits, comments and issues".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng GitHub Feed Filter

Tải xuống các tệp mở rộng GitHub Feed Filter dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên GitHub Feed Filter GitHub Feed Filter
ID jcpkhafkpnaljjbgdgbehajihicjalkc
URL Chính Thức https://chromewebstore.google.com/detail/github-feed-filter/jcpkhafkpnaljjbgdgbehajihicjalkc
Mô tả Enables filtering out GitHub feeds by projects, commits, comments and issues
Kích Thước Tệp 54.09 KB
Số Lần Cài Đặt 59
Phiên Bản Hiện Tại 1.9
Cập Nhật Lần Cuối 2015-05-10
Ngày Phát Hành 2015-05-10
Đánh Giá 4.70/5 Tổng số 10 Đánh Giá
Nhà Phát Triển Vijay Dev
Loại Thanh Toán free
URL Trang Trợ Giúp https://github.com/vijaydev/github-feed-filter
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}