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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
    }
}