Github Stars

See the number of stars earned by a github repository while hovering over its link.

Qu'est-ce que Github Stars ?

Github Stars est une extension Chrome développée par SuPythony, et sa fonction principale est "See the number of stars earned by a github repository while hovering over its link.".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Github Stars

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

                        Github Stars is an extension that allows you to view the stars earned by a Github repo as well as its languages by hovering over its link on a webpage, without needing to navigate to it. You can also enable prefetching, which allows you to view the stars instantly after hovering over the link.

It's open source and the repository and further details can be found here - https://github.com/SuPythony/Github-Stars-Extension                    

Informations de Base sur l'Extension

Nom Github Stars Github Stars
ID gppcomlihamjbakpnjafgmolpieofdmm
URL Officiel https://chromewebstore.google.com/detail/github-stars/gppcomlihamjbakpnjafgmolpieofdmm
Description See the number of stars earned by a github repository while hovering over its link.
Taille du Fichier 19.28 KB
Nombre d'Installations 32
Version Actuelle 1.1.0
Dernière Mise à Jour 2023-04-24
Date de Publication 2022-02-03
Évaluation 4.00/5 Total 2 Évaluations
Développeur SuPythony
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/SuPythony/Github-Stars-Extension
URL de la Page d'Aide https://github.com/SuPythony/Github-Stars-Extension/issues
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Github Stars",
    "description": "See the number of stars earned by a github repository while hovering over its link.",
    "version": "1.1.0",
    "manifest_version": 3,
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "main.js"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "storage"
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "\/icons\/16.png",
            "32": "\/icons\/32.png",
            "48": "\/icons\/48.png",
            "128": "\/icons\/128.png"
        }
    },
    "icons": {
        "16": "\/icons\/16.png",
        "32": "\/icons\/32.png",
        "48": "\/icons\/48.png",
        "128": "\/icons\/128.png"
    }
}