GitHub Real Names
Use real names on GitHub
Cos'è GitHub Real Names?
GitHub Real Names è un'estensione di Chrome sviluppata da ForbesLindesay, e la sua funzione principale è "Use real names on GitHub".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione GitHub Real Names
Scarica i file di estensione GitHub Real Names 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
Adds a button to let you toggle real names vs. usernames in GitHub. Informazioni di Base sull'Estensione
| Nome | |
| ID | edfnfekndkopmlejjmlplpceflfldoae |
| URL Ufficiale | https://chromewebstore.google.com/detail/github-real-names/edfnfekndkopmlejjmlplpceflfldoae |
| Descrizione | Use real names on GitHub |
| Dimensione del File | 38.66 KB |
| Conteggio Installazioni | 633 |
| Versione Corrente | 1.3.1 |
| Ultimo Aggiornamento | 2020-08-19 |
| Data di Pubblicazione | 2018-03-26 |
| Valutazione | 3.60/5 Totale 10 Valutazioni |
| Sviluppatore | ForbesLindesay |
| [email protected] | |
| Tipo di Pagamento | free |
| Lingue Supportate | en-GB |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "GitHub Real Names",
"description": "Use real names on GitHub",
"icons": {
"16": "icon.png",
"48": "icon.png",
"128": "icon.png"
},
"version": "1.3.1",
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"browser_action": {
"default_icon": "icon.png",
"default_title": "Toggle using real GitHub real names"
},
"content_scripts": [
{
"matches": [
"https:\/\/github.com\/*"
],
"js": [
"contentscript.js"
],
"run_at": "document_idle",
"all_frames": false
}
],
"manifest_version": 2
} | |