Github Stars

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

Τι είναι το Github Stars;

Το Github Stars είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον SuPythony, και η κύρια λειτουργία του είναι "See the number of stars earned by a github repository while hovering over its link.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Github Stars

Λήψη αρχείων επέκτασης Github Stars σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Github Stars Github Stars
ID gppcomlihamjbakpnjafgmolpieofdmm
Επίσημο URL https://chromewebstore.google.com/detail/github-stars/gppcomlihamjbakpnjafgmolpieofdmm
Περιγραφή See the number of stars earned by a github repository while hovering over its link.
Μέγεθος Αρχείου 19.28 KB
Αριθμός Εγκαταστάσεων 32
Τρέχουσα Έκδοση 1.1.0
Τελευταία Ενημέρωση 2023-04-24
Ημερομηνία Δημοσίευσης 2022-02-03
Αξιολόγηση 4.00/5 Συνολικά 2 Αξιολογήσεις
Προγραμματιστής SuPythony
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/SuPythony/Github-Stars-Extension
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/SuPythony/Github-Stars-Extension/issues
Υποστηριζόμενες Γλώσσες 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"
    }
}