Useful Forks

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

什么是Useful Forks?

Useful Forks是由https://useful-forks.github.io开发的Chrome扩展程序,该扩展的主要功能是“To list GitHub forks ordered by stars, with additional information and automatic filtering of irrelevant ones.”。

扩展截图

screenshot
screenshot

下载Useful Forks扩展crx文件

下载Useful Forks扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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.                    

扩展基本信息

名称 Useful Forks Useful Forks
ID aflbdmaojedofngiigjpnlabhginodbf
官方URL https://chromewebstore.google.com/detail/useful-forks/aflbdmaojedofngiigjpnlabhginodbf
简介 To list GitHub forks ordered by stars, with additional information and automatic filtering of irrelevant ones.
文件大小 13.4 KB
安装次数 575
当前版本 2.2.3
更新时间 2023-08-03
上架时间 2023-01-21
评分 5.00/5 共7次评分
开发者 https://useful-forks.github.io
电子邮箱 [email protected]
付费类型 free
帮助页面URL https://github.com/useful-forks/useful-forks.github.io/issues
支持的语言 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
        }
    ]
}