Useful Forks

To list GitHub forks ordered by stars, with additional information and automatic filtering of irrelevant ones.

Useful Forks là gì?

Useful Forks là một tiện ích mở rộng Chrome được phát triển bởi https://useful-forks.github.io, và tính năng chính của nó là "To list GitHub forks ordered by stars, with additional information and automatic filtering of irrelevant ones.".

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

screenshot
screenshot

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

Tải xuống các tệp mở rộng Useful Forks 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

                        The plugin inserts a button next to the "Fork" button when you visit a GitHub repository. Clicking on it will open a new tab which will use the online tool to scan the forks.
This tool aims at increasing the discoverability of useful forks of open-source projects.
The criteria is simple: if a fork was created, but never received any other activity on its main branch, it is filtered out.
For sharing: the results can be exported as CSV, or you can point people to the quick-link URL.                    

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

Tên Useful Forks Useful Forks
ID aflbdmaojedofngiigjpnlabhginodbf
URL Chính Thức https://chromewebstore.google.com/detail/useful-forks/aflbdmaojedofngiigjpnlabhginodbf
Mô tả To list GitHub forks ordered by stars, with additional information and automatic filtering of irrelevant ones.
Kích Thước Tệp 13.4 KB
Số Lần Cài Đặt 575
Phiên Bản Hiện Tại 2.2.3
Cập Nhật Lần Cuối 2023-08-03
Ngày Phát Hành 2023-01-21
Đánh Giá 5.00/5 Tổng số 7 Đánh Giá
Nhà Phát Triển https://useful-forks.github.io
Email [email protected]
Loại Thanh Toán free
URL Trang Trợ Giúp https://github.com/useful-forks/useful-forks.github.io/issues
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Useful Forks",
    "version": "2.2.3",
    "description": "To list GitHub forks ordered by stars, with additional information and automatic filtering of irrelevant ones.",
    "icons": {
        "16": "images\/useful-forks-16.png",
        "32": "images\/useful-forks-32.png",
        "48": "images\/useful-forks-48.png",
        "128": "images\/useful-forks-128.png"
    },
    "host_permissions": [
        "*:\/\/github.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/github.com\/*\/*"
            ],
            "js": [
                "useful-forks.js"
            ],
            "run_at": "document_idle",
            "all_frames": true
        }
    ]
}