Github Active Forks

Adds an active forks section on a Github Page

什么是Github Active Forks?

Github Active Forks是由yashx开发的Chrome扩展程序,该扩展的主要功能是“Adds an active forks section on a Github Page”。

扩展截图

screenshot

下载Github Active Forks扩展crx文件

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

扩展使用说明

                        Open Source Chrome Extension that adds an active forks section on a Github Repository Page

Repo: https://github.com/yashx/github-active-forks

Features
1. Select the number of forks you want to see. (Min 1 and Max 100)
2. Sort forks of the repository by most stared, last commit or most sub forks.
3. No additional Github API calls are made when the above mentioned options are changed so you can modify them without worrying about rate limits.                    

扩展基本信息

名称 Github Active Forks Github Active Forks
ID oflkkabfokadmncdbhdggeedngllccak
官方URL https://chromewebstore.google.com/detail/github-active-forks/oflkkabfokadmncdbhdggeedngllccak
简介 Adds an active forks section on a Github Page
文件大小 170 KB
安装次数 177
当前版本 0.0.3
更新时间 2022-03-19
上架时间 2021-08-19
评分 4.00/5 共1次评分
开发者 yashx
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/yashx/github-active-forks
隐私政策页面URL https://sites.google.com/view/yashx/privacy-policy
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Github Active Forks",
    "description": "Adds an active forks section on a Github Page",
    "version": "0.0.3",
    "manifest_version": 3,
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*\/*"
            ],
            "js": [
                "content-script.js"
            ]
        }
    ],
    "permissions": [
        "storage"
    ],
    "action": {
        "default_popup": "popup_options.html",
        "default_icon": {
            "16": ".\/images\/logo-16.png",
            "32": ".\/images\/logo-32.png",
            "48": ".\/images\/logo-48.png",
            "128": ".\/images\/logo-128.png"
        }
    },
    "background": {
        "service_worker": "background.js"
    },
    "icons": {
        "16": ".\/images\/logo-16.png",
        "32": ".\/images\/logo-32.png",
        "48": ".\/images\/logo-48.png",
        "128": ".\/images\/logo-128.png"
    }
}