Github Active Forks

Adds an active forks section on a Github Page

Qu'est-ce que Github Active Forks ?

Github Active Forks est une extension Chrome développée par yashx, et sa fonction principale est "Adds an active forks section on a Github Page".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Github Active Forks

Téléchargez les fichiers d'extension Github Active Forks au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Github Active Forks Github Active Forks
ID oflkkabfokadmncdbhdggeedngllccak
URL Officiel https://chromewebstore.google.com/detail/github-active-forks/oflkkabfokadmncdbhdggeedngllccak
Description Adds an active forks section on a Github Page
Taille du Fichier 170 KB
Nombre d'Installations 177
Version Actuelle 0.0.3
Dernière Mise à Jour 2022-03-19
Date de Publication 2021-08-19
Évaluation 4.00/5 Total 1 Évaluations
Développeur yashx
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/yashx/github-active-forks
URL de la Page de Politique de Confidentialité https://sites.google.com/view/yashx/privacy-policy
Langues Prises en Charge 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"
    }
}