Go2Doc
This extension opens the corresponding tab in godoc.org.
Co to jest Go2Doc?
Go2Doc to rozszerzenie Chrome opracowane przez francesc, a jego główną funkcją jest „This extension opens the corresponding tab in godoc.org.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Go2Doc
Pobierz pliki rozszerzeń Go2Doc w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | Go2Doc |
ID | mnpdpppgidppdhingkmlcmmgdjknecif |
Oficjalny URL | https://chromewebstore.google.com/detail/go2doc/mnpdpppgidppdhingkmlcmmgdjknecif |
Opis | This extension opens the corresponding tab in godoc.org. |
Rozmiar pliku | 15.32 KB |
Liczba instalacji | 111 |
Aktualna Wersja | 0.5 |
Ostatnia Aktualizacja | 2014-03-19 |
Data Publikacji | 2014-03-19 |
Ocena | 4.75/5 Łącznie 4 Oceny |
Deweloper | francesc |
Typ Płatności | free |
Obsługiwane Języki | 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" } } |