CoderStats link for Github Coders

Display a link to the CoderStats page for the currently displayed GitHub user when browsing github.com.

Was ist CoderStats link for Github Coders?

CoderStats link for Github Coders ist eine Chrome-Erweiterung, die von Ramiro Gómez entwickelt wurde, und ihr Hauptmerkmal ist "Display a link to the CoderStats page for the currently displayed GitHub user when browsing github.com.".

Erweiterungsscreenshots

screenshot
screenshot

CoderStats link for Github Coders-Erweiterungs-CRX-Datei herunterladen

Laden Sie CoderStats link for Github Coders-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        The CoderStats link for GitHub Chrome extension displays a link to the CoderStats page for the currently displayed user or organization profile page on GitHub.                    

Grundlegende Informationen zur Erweiterung

Name CoderStats link for Github Coders CoderStats link for Github Coders
ID necogepejonacpphmlmcagmbjaogpbng
Offizielle URL https://chromewebstore.google.com/detail/coderstats-link-for-githu/necogepejonacpphmlmcagmbjaogpbng
Beschreibung Display a link to the CoderStats page for the currently displayed GitHub user when browsing github.com.
Dateigröße 8.7 KB
Installationsanzahl 807
Aktuelle Version 2.0.0
Letztes Update 2023-05-03
Veröffentlichungsdatum 2019-06-15
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler Ramiro Gómez
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://coderstats.github.io/
Unterstützte Sprachen en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "version": "2.0.0",
    "homepage_url": "http:\/\/coderstats.github.io\/",
    "name": "CoderStats link for Github Coders",
    "description": "Display a link to the CoderStats page for the currently displayed GitHub user when browsing github.com.",
    "icons": {
        "48": "logo-48x48.png",
        "128": "logo-128x128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*"
            ],
            "js": [
                "coderstats.js"
            ],
            "run_at": "document_end"
        }
    ]
}