Dashboard filter for GitHub

This adds an activity filter menu to GitHub dashboard.

Dashboard filter for GitHub là gì?

Dashboard filter for GitHub là một tiện ích mở rộng Chrome được phát triển bởi Mu-An Chiou, và tính năng chính của nó là "This adds an activity filter menu to GitHub dashboard.".

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

screenshot

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

Tải xuống các tệp mở rộng Dashboard filter for GitHub 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

                        This adds an activity filter menu to GitHub.com dashboard page so user can choose to see only the activities they care about.                    

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

Tên Dashboard filter for GitHub Dashboard filter for GitHub
ID pcnaddhmngnnpookfhhamkelhhakimdg
URL Chính Thức https://chromewebstore.google.com/detail/dashboard-filter-for-gith/pcnaddhmngnnpookfhhamkelhhakimdg
Mô tả This adds an activity filter menu to GitHub dashboard.
Kích Thước Tệp 6.87 KB
Số Lần Cài Đặt 575
Phiên Bản Hiện Tại 0.8.8
Cập Nhật Lần Cuối 2022-12-13
Ngày Phát Hành 2019-05-12
Đánh Giá 4.50/5 Tổng số 6 Đánh Giá
Nhà Phát Triển Mu-An Chiou
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/muan/github-dashboard
URL Trang Trợ Giúp https://github.com/muan/github-dashboard/issues
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Dashboard filter for GitHub",
    "short_name": "dashboard",
    "version": "0.8.8",
    "manifest_version": 3,
    "description": "This adds an activity filter menu to GitHub dashboard.",
    "homepage_url": "http:\/\/github.com\/muan\/dashboard",
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/",
                "https:\/\/github.com\/orgs\/*\/dashboard"
            ],
            "css": [
                "dashboard.css"
            ],
            "js": [
                "dashboard.js"
            ]
        }
    ],
    "host_permissions": [
        "https:\/\/api.github.com\/*"
    ]
}