Github Star Count

When you view an awesome page, add star count to github repository links.

Qu'est-ce que Github Star Count ?

Github Star Count est une extension Chrome développée par progzhangchao, et sa fonction principale est "When you view an awesome page, add star count to github repository links.".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Github Star Count

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

                        When you view an awesome page on github site,  such as https://github.com/fffaraz/awesome-cpp, click the extension button, it will add star count to all github repository links on the page.                    

Informations de Base sur l'Extension

Nom Github Star Count Github Star Count
ID jahogeehepfohgakggfeeimokcgnmdid
URL Officiel https://chromewebstore.google.com/detail/github-star-count/jahogeehepfohgakggfeeimokcgnmdid
Description When you view an awesome page, add star count to github repository links.
Taille du Fichier 7.4 KB
Nombre d'Installations 210
Version Actuelle 1.0
Dernière Mise à Jour 2021-03-10
Date de Publication 2021-03-09
Évaluation 5.00/5 Total 1 Évaluations
Développeur progzhangchao
Email [email protected]
Type de Paiement in_app
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Github Star Count",
    "version": "1.0",
    "description": "When you view an awesome page, add star count to github repository links.",
    "author": "progzhangchao",
    "icons": {
        "128": "icon-128.png",
        "48": "icon-128.png"
    },
    "browser_action": {
        "default_icon": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "js\/content-script.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    }
}