Go2Doc
This extension opens the corresponding tab in godoc.org.
Vad är Go2Doc?
Go2Doc är en Chrome-tillägg utvecklad av francesc, och dess huvudfunktion är "This extension opens the corresponding tab in godoc.org.".
Tilläggsskärmbilder
Ladda ner Go2Doc-förlängningens CRX-fil
Ladda ner Go2Doc-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
This extensions shows a tiny little gopher on the address box whenever the URL is in github.com or code.google.com. Clicking the little gopher opens the corresponding godoc.org page on a new tab. Note: The gopher appears on any repository, without checking if there's any Go code in it. I might fix this at some point.
Grundläggande Information om Tillägg
Namn | Go2Doc |
ID | mnpdpppgidppdhingkmlcmmgdjknecif |
Officiell webbadress | https://chromewebstore.google.com/detail/go2doc/mnpdpppgidppdhingkmlcmmgdjknecif |
Beskrivning | This extension opens the corresponding tab in godoc.org. |
Filstorlek | 15.32 KB |
Antal Installationer | 111 |
Aktuell Version | 0.5 |
Senast Uppdaterad | 2014-03-19 |
Publiceringsdatum | 2014-03-19 |
Betyg | 4.75/5 Totalt 4 Betyg |
Utvecklare | francesc |
Betalningssätt | free |
Stödda Språk | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Go2Doc", "description": "This extension opens the corresponding tab in godoc.org.", "version": "0.5", "background": { "scripts": [ "godoc.js" ], "persistent": false }, "permissions": [ "activeTab", "declarativeContent" ], "icons": { "128": "doc.png" }, "page_action": { "default_icon": "doc.png", "default_title": "open in godoc.org" } } |