Github Active Forks

Adds an active forks section on a Github Page

Github Active Forks là gì?

Github Active Forks là một tiện ích mở rộng Chrome được phát triển bởi yashx, và tính năng chính của nó là "Adds an active forks section on a Github Page".

Ả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 Github Active Forks

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

                        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.                    

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

Tên Github Active Forks Github Active Forks
ID oflkkabfokadmncdbhdggeedngllccak
URL Chính Thức https://chromewebstore.google.com/detail/github-active-forks/oflkkabfokadmncdbhdggeedngllccak
Mô tả Adds an active forks section on a Github Page
Kích Thước Tệp 170 KB
Số Lần Cài Đặt 177
Phiên Bản Hiện Tại 0.0.3
Cập Nhật Lần Cuối 2022-03-19
Ngày Phát Hành 2021-08-19
Đánh Giá 4.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển yashx
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/yashx/github-active-forks
URL Trang Chính Sách Bảo Mật https://sites.google.com/view/yashx/privacy-policy
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}