Github Godoc
Enhances Github UI for Go projects
Hvad er Github Godoc?
Github Godoc er en Chrome-udvidelse udviklet af Unknown, og dens hovedfunktion er "Enhances Github UI for Go projects".
Udvidelsesskærmbilleder
Download Github Godoc-udvidelses-CRX-fil
Download Github Godoc-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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.
Grundlæggende oplysninger om udvidelsen
Navn | Github Godoc |
ID | fhlenghekakdnaamlbkhhnnhdlpfpfej |
Officiel URL | https://chromewebstore.google.com/detail/github-godoc/fhlenghekakdnaamlbkhhnnhdlpfpfej |
Beskrivelse | Enhances Github UI for Go projects |
Filstørrelse | 24.68 KB |
Antal Installationer | 61 |
Nuværende Version | 1.5 |
Senest Opdateret | 2019-06-21 |
Udgivelsesdato | 2019-06-21 |
Bedømmelse | 5.00/5 Samlet 1 Bedømmelser |
Udvikler | Unknown |
Betalingsmetode | free |
Udvidelseswebsted | https://github.com/posener/chrome-github-godoc |
Understøttede Sprog | 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" } } |