GitHub User Languages
See the language usage breakdown of a User or Org right on their GitHub profile page.
Cos'è GitHub User Languages?
GitHub User Languages è un'estensione di Chrome sviluppata da https://freyama.de, e la sua funzione principale è "See the language usage breakdown of a User or Org right on their GitHub profile page.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione GitHub User Languages
Scarica i file di estensione GitHub User Languages in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
GitHub User Languages is a simple extension that renders a pie chart onto a profile page on GitHub. This pie chart shows a breakdown of the languages used in the public repositories owned by the User or Organisation. The chart uses GitHub's official language colours for each language, and each segment can be clicked to take you to a list of the repositories owned by the account in each language. Now you can see what languages a User or Org like to use all in a single place, right on their own profile!
Informazioni di Base sull'Estensione
Nome | GitHub User Languages |
ID | kikdmnikeponomghepmfipgiijlmfhfl |
URL Ufficiale | https://chromewebstore.google.com/detail/github-user-languages/kikdmnikeponomghepmfipgiijlmfhfl |
Descrizione | See the language usage breakdown of a User or Org right on their GitHub profile page. |
Dimensione del File | 282 KB |
Conteggio Installazioni | 940 |
Versione Corrente | 1.1.0 |
Ultimo Aggiornamento | 2023-09-25 |
Data di Pubblicazione | 2019-07-19 |
Valutazione | 5.00/5 Totale 3 Valutazioni |
Sviluppatore | https://freyama.de |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/freyamade/github-user-languages |
URL della Pagina di Aiuto | https://github.com/freyamade/github-user-languages/issues |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "action": { "default_icon": "images\/github-user-languages.128.png", "default_popup": "popup.html" }, "author": "freyamade", "content_scripts": [ { "js": [ "js\/vendor.js", "js\/content_script.js" ], "matches": [ "https:\/\/github.com\/*" ] } ], "description": "See the language usage breakdown of a User or Org right on their GitHub profile page.", "host_permissions": [ "https:\/\/api.github.com\/", "https:\/\/raw.githubusercontent.com\/ozh\/github-colors\/master\/colors.json" ], "icons": { "128": "images\/github-user-languages.128.png" }, "manifest_version": 3, "name": "GitHub User Languages", "permissions": [ "storage" ], "short_name": "github-user-languages", "version": "1.1.0" } |