Github Godoc
Enhances Github UI for Go projects
Cos'è Github Godoc?
Github Godoc è un'estensione di Chrome sviluppata da Unknown, e la sua funzione principale è "Enhances Github UI for Go projects".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Github Godoc
Scarica i file di estensione Github Godoc 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
This extension modifies Github files list view for Go projects: * Replaces git commit messages with useful godoc.org synopsis. * Adds an icon with a link to the package in godoc.org.
Informazioni di Base sull'Estensione
Nome | Github Godoc |
ID | fhlenghekakdnaamlbkhhnnhdlpfpfej |
URL Ufficiale | https://chromewebstore.google.com/detail/github-godoc/fhlenghekakdnaamlbkhhnnhdlpfpfej |
Descrizione | Enhances Github UI for Go projects |
Dimensione del File | 24.68 KB |
Conteggio Installazioni | 61 |
Versione Corrente | 1.5 |
Ultimo Aggiornamento | 2019-06-21 |
Data di Pubblicazione | 2019-06-21 |
Valutazione | 5.00/5 Totale 1 Valutazioni |
Sviluppatore | Unknown |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/posener/chrome-github-godoc |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Github Godoc", "description": "Enhances Github UI for Go projects", "version": "1.5", "permissions": [ "*:\/\/*.godoc.org\/*", "tabs" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "web_accessible_resources": [ "images\/gopher.png" ], "content_scripts": [ { "matches": [ "https:\/\/github.com\/*" ], "js": [ "content.js" ] } ], "icons": { "16": "images\/icon16.png", "48": "images\/icon48.png", "128": "images\/icon128.png" } } |