Github Active Forks

Adds an active forks section on a Github Page

Was ist Github Active Forks?

Github Active Forks ist eine Chrome-Erweiterung, die von yashx entwickelt wurde, und ihr Hauptmerkmal ist "Adds an active forks section on a Github Page".

Erweiterungsscreenshots

screenshot

Github Active Forks-Erweiterungs-CRX-Datei herunterladen

Laden Sie Github Active Forks-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Github Active Forks Github Active Forks
ID oflkkabfokadmncdbhdggeedngllccak
Offizielle URL https://chromewebstore.google.com/detail/github-active-forks/oflkkabfokadmncdbhdggeedngllccak
Beschreibung Adds an active forks section on a Github Page
Dateigröße 170 KB
Installationsanzahl 177
Aktuelle Version 0.0.3
Letztes Update 2022-03-19
Veröffentlichungsdatum 2021-08-19
Bewertung 4.00/5 Insgesamt 1 Bewertungen
Entwickler yashx
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/yashx/github-active-forks
URL der Datenschutzrichtlinien-Seite https://sites.google.com/view/yashx/privacy-policy
Unterstützte Sprachen 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"
    }
}