Github Activity Checker

Checks the activity level of GitHub projects

Qu'est-ce que Github Activity Checker ?

Github Activity Checker est une extension Chrome développée par Florian Laurent, et sa fonction principale est "Checks the activity level of GitHub projects".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Github Activity Checker

Téléchargez les fichiers d'extension Github Activity Checker 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

                        This extension adds a clear activity indicator when browsing GitHub project pages.

It's often unclear when looking at a GitHub project how much *recent activity* has occurred. 

You can check the activity graph, but it's not visible from the project main page and takes times to load.

Sometimes you can see that some files have been recently modified, but it's not obvious if it comes from active development or someone doing superficial changes.

This extension shows an indicator based on a clear metric: the number of commits done in the past 4 weeks. You can see the precise number of commits by hovering the "activity" label, and you can access the full activity graph by clicking on it.

Source (Apache 2.0):
https://github.com/MasterScrat/GithubActivityChecker                    

Informations de Base sur l'Extension

Nom Github Activity Checker Github Activity Checker
ID agebcpekpbkaibjghgakombjjkefmcol
URL Officiel https://chrome.google.com/webstore/detail/github-activity-checker/agebcpekpbkaibjghgakombjjkefmcol
Description Checks the activity level of GitHub projects
Taille du Fichier 93.82 KB
Nombre d'Installations 34
Version Actuelle 0.0.3
Dernière Mise à Jour 2019-03-08
Date de Publication 2019-03-08
Évaluation 5.00/5 Total 3 Évaluations
Développeur Florian Laurent
Type de Paiement free
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Github Activity Checker",
    "version": "0.0.3",
    "manifest_version": 2,
    "description": "Checks the activity level of GitHub projects",
    "content_security_policy": "script-src 'self' https:\/\/www.google-analytics.com; object-src 'self'",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "permissions": [
        "https:\/\/github.com\/*\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*\/*",
                "http:\/\/github.com\/*\/*"
            ],
            "js": [
                "js\/jquery.min.js",
                "js\/lodash.min.js",
                "src\/inject\/inject.js"
            ]
        }
    ]
}